
c
mct123
这个作者很懒,什么都没留下…
展开
-
AUPE第三章文件I/O笔记
fcntl在设置文件状态和标志时,要注意先原创 2014-08-07 10:47:21 · 572 阅读 · 0 评论 -
APUE第4章 文件和目录笔记
1.#include#includeint stat(const char *pathname,struct stat *buf);//根据文件名取得文件的信息int fstat(int fd,struct stat *buf);//根据文件描述符取得文件信息int lstat(const char *pathname,struct stat *buf);//类似stat,但当文件原创 2014-08-08 17:30:23 · 647 阅读 · 0 评论 -
APUE第5章标准I/O库 笔记
1.系统调用是以文件描述符进行I/O原创 2014-08-12 15:16:10 · 670 阅读 · 0 评论 -
APUE第6章 系统数据文件和信息 笔记
1.getpwuid函数是通过用户的uid查找用户的passwd数据。如果出错时,它们都返回一个空指针并设置errno的值,用户可以根据perror函数查看出错的信息。原创 2014-08-14 15:41:34 · 478 阅读 · 0 评论 -
APUE第7章 UNIX进程环境 笔记
1.五种方式使进程终止正常:return原创 2014-08-14 16:52:45 · 642 阅读 · 0 评论