向 libc 添加新函数

发布于 2024-11-04 23:03:47 字数 64 浏览 0 评论 0原文

如何添加新的 libc 函数并从 C 程序调用它?新函数不是任何内核级系统调用的包装器。它的功能将在用户空间完成。

How can I add a new libc function and also call it from C programs? The new function is a not a wrapper to any kernel level system calls. Its function will be done in user space.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

飘过的浮云 2024-11-11 23:03:47

将其放入自己的库文件中,并使用 -llibrary_name_here 链接。唯一属于 libc 的东西已经在那里了(还有很多不属于那里的东西)。

Put it in its own library file and link it with -llibrary_name_here. The only things that belong in libc are already there (along with plenty of things that don't belong there).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文