我使用kernel.org文档阅读有关内核函数的内容。现在,我正在尝试为内核模式函数(如printk和man 9 printk )编写阅读手册。第9节用于此目的:来自man man节描述:在make mandocs上运行/usr/src/linux/会引发以下情况:
make: *** No rule to make target我在Gentoo GNU/Linux系统上找不到man9包。此外,我试图在Debian
当我使用man -a close时,第一页是POSIX手册页,然后是close(2) (2表示系统api或内核函数)。这意味着至少有两个版本的close()。-here, which version is called,
is that one from the POSIX lib, or the raw system API附注:因此我的linux系统为大多数系统API调用都包含了一个POSIX包装器,如何辨别我的代码是在调用POSIX lib还是原
一个linux内核的新手问题。mmap手册页说明".. otherwise, it shall return a value of MAP_FAILED and set errno to indicate the error..."
我在/usr/src/linux/mm/mmap.c下查找了mmap的内核代码,但我找不到mmap返回MAP_FAILED的位置。