向 libc 添加新函数
如何添加新的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其放入自己的库文件中,并使用
-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).