码迷,mamicode.com
首页 > 其他好文 > 详细

《unix环境高级编程》 读书笔记 目录

时间:2014-09-17 20:32:28      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   os   使用   ar   for   文件   div   

近来读书,做些笔记,来年好翻翻。

本文所使用的操作系统为 CentOS7.0,如果不想装双系统的可以装虚拟机,可以参考这里:

http://blog.csdn.net/alex_my/article/details/38142229

当然啦,直接装个再好不过了。


1 链接:http://blog.csdn.net/alex_my/article/details/39079053

涉及主题:文件描述符,系统资源限制,文件相关,close-on-exec,

涉及函数:getrlimit, setrlimit
         lseek, open, creat, close, pthread, pwrite, dup, dup2, dup3 
         fcntl, opctl


涉及主题:文件与目录,文件类型及判断,real user/group ID, effective user/group ID
          文件权限,文件hole,文件截断,符号链接

涉及函数:stat, fstat, lstat, fstatat
          access, faccessat, chmod, fchmod, fchmodat
          truncate, ftruncate
          symlink, symlinkat, readlink, readlinkat



涉及主题:标准流相关,FILE,二进制I/O,格式化

涉及函数:fwide, setbuf, setvbuf
          fopen, fdopen, freopen
          getc, fgetc, getchar, putc, fputc, putchar
          gets, fgets, fputs, puts
          fread, fwrite
          dprintf, vdprintf, printf, fprintf, sprintf, snprintf
          vprintf, vfprintf, vsprintf, vsnprintf
          scanf, fscanf, sscanf
          vscanf, vsscanf, vfscanf
          fmemopen, open_memstream, open_wmemstream


涉及主题:password file,shadow passwords,group file,本地主机名

涉及函数:getpwnam, getpwuid, getpwnam_r, getpwuid_r
         getpwent, setpwent, endpwent
         getspnam, getspent, setspent, endspent
   fgetspent, sgetspent, putspent
   lckpwdf, ulckpwdf
         getgrnam, getgrgid, getgrnam_r, getgrgid_r
         gethostname


涉及主题:日期与时间

涉及函数:time, clock_getres, clock_gettime, clock_settime
          gettimeofday
          asctime, asctime_r 
          ctime, ctime_r
          gmtime, gmtime_r
          localtime, localtime_r
          mktime
          strftime, strptime


涉及主题:进程退出

涉及函数:exit, _exit, _Exit, atexit


涉及主题:进程ID,子进程,进程退出处理,孤儿进程,僵尸进程

涉及函数:getpid, getppid, getuid, geteuid, getgid, getegid
          fork, vfork
          wait, waitpid, waitid



《unix环境高级编程》 读书笔记 目录

标签:style   blog   http   os   使用   ar   for   文件   div   

原文地址:http://blog.csdn.net/alex_my/article/details/39346381

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!