如何从 Linux 内核调用标准库?

发布于 2024-11-28 23:42:56 字数 151 浏览 1 评论 0原文

我正在调整 Linux 内核 /net 目录中的代码。

我正在尝试诸如打印之类的操作,但我发现没有相关的标头(例如 stdlib.hstdio.h 等)。那么我怎样才能在内核级别做到这一点呢?

I am tweaking code residing in the /net directory of linux kernel.

I was trying things like printing but I see that there are no relevant headers (like stdlib.h, stdio.h etc). So how can I do this at the kernel level?

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

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

发布评论

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

评论(2

南巷近海 2024-12-05 23:42:57

您不能在内核中使用任何用户空间库函数,您应该仅使用内核导出的函数。所以,不会有stdio.h,stdlib.h等。如果你想在内核中打印一些东西,你有printk()< /code> 函数,相当于用户空间中的printf()

另请参阅我的博客文章 Linux 模块编程第 1 部分第 2 部分

You cannot use any user space library functions in kernel, You should use only functions exported by the kernel. So, there will not be stdio.h, stdlib.h, etc. If you want to print something in the kernel, you have the printk() function, this is equivalent to printf() in user space.

See also my blog posts Linux Module Programming Part1 and Part2.

等待我真够勒 2024-12-05 23:42:57

内核模块无权访问 C 标准库。内核中有一些可用的函数;查看内核中的 lib 目录源代码或您最喜欢的 Linux 内核编程书籍(如果您没有,Linux Device Drivers 是一个很好的,而且可以在线获得)。对于 printf 调试,有 printk,它向内核日志发出消息。

Kernel modules do not have access to the C standard library. There are a few functions available in the kernel; look in the lib directory in the kernel source or in your favorite Linux kernel programming book (if you don't have one, Linux Device Drivers is a good one, and it's available online). For printf debugging, there's printk, which emits messages to the kernel logs.

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