第二章 UNIX标准化及实现
1 标准:
ANSI
American National Standards Institute 美国国家标准协会
ISO
International Organization for Standardization 国际标准化组织
POSIX
Portable Operating System Interface 可移植的操作系统接口
2 运行时限制:
获取运行时限制的函数:
#include
long sysconf(int name);
long pathconf(const char *pathname, int name);
long fpathconf(int filedes, int name);
3 基本系统数据类型:
caddr_t 核心地址
clock_t 时钟滴答计数器
comp_t 压缩的时钟滴答
dev_t 设备号
fd_set 文件描述符
fpos_t 文件位置
gid_t 数值组ID
ino_t i节点编号
mode_t 文件类型,文件创建模式
nlink_t 目录项的链接记数
off_t 文件大小和偏移量,带符号的
pid_t 进程ID和进程组ID,带符号的
ptrdiff_t 俩个指针相减的结果
rlim_t 资源限制
sig_atomic_t 能原子地访问的数据类型
sigset_t 信号集
size_t 对象大小,不带符号的
ssize_t 返回字节记数的函数,带符号的
time_t 日历时间的秒计数器
uid_t 数值用户ID
wchar_t 能表示所有不同的字节码
阅读(1986) | 评论(0) | 转发(0) |