当前位置: 技术问答>linux和unix
20分:LINUX下函数的不同属性
来源: 互联网 发布时间:2015-10-22
本文导语: LINUX下的函数经常描述为: finger(1),write(3)等形式,好象3表示ANSI C库函数,2表示系统调用函数,另外几个(1、4、5)表示什么意思呢? | man man可以得到有关信息: 1 Executable...
LINUX下的函数经常描述为:
finger(1),write(3)等形式,好象3表示ANSI C库函数,2表示系统调用函数,另外几个(1、4、5)表示什么意思呢?
finger(1),write(3)等形式,好象3表示ANSI C库函数,2表示系统调用函数,另外几个(1、4、5)表示什么意思呢?
|
man man可以得到有关信息:
1 Executable programs or shell commands
2 System calls (functions provided by the kernel)
3 Library calls (functions within program libraries)
4 Special files (usually found in /dev)
5 File formats and conventions eg /etc/passwd
6 Games
7 Miscellaneous (including macro packages and conven-
tions), e.g. man(7), groff(7)
8 System administration commands (usually only for root)
9 Kernel routines [Non standard]
如果不同部分有同样的项目,可以加上一个数字区分,比如
man 1 write
man 2 write
分别解释write命令和write系统调用
1 Executable programs or shell commands
2 System calls (functions provided by the kernel)
3 Library calls (functions within program libraries)
4 Special files (usually found in /dev)
5 File formats and conventions eg /etc/passwd
6 Games
7 Miscellaneous (including macro packages and conven-
tions), e.g. man(7), groff(7)
8 System administration commands (usually only for root)
9 Kernel routines [Non standard]
如果不同部分有同样的项目,可以加上一个数字区分,比如
man 1 write
man 2 write
分别解释write命令和write系统调用
|
学习,了解了
|
哦,我也了解了。