linux环境高级编程3-unix进程环境、进程控制和进程关系.ppt

linux环境高级编程3-unix进程环境、进程控制和进程关系.ppt

  1. 1、本文档共64页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
第三讲:UNIX进程环境、进程控制和进程关系;Contents;Process status;Linux的进程组织;;Linux的进程结构;Linux的进程结构;Linux的进程结构;Process start;Command-line arguments;Process termination;exit and _exit Function;atexit Function;Example: (showtime.c);How a C program is started and terminates;Memory layout of a Program;Typical memory arrangement;Memory allocation;Environment variables;Environment variables (Cont.);Resource limits ;Resource limits (Cont.);Resource limits (Cont.);Resource limitation;Getrlimit.c;getrusage Function;Process identifiers;Process identifiers (cont.);;fork Function;struct task_struct unsigned long state; int prio; struct task_struct *parent; struct list_head task; pid_t pid; ……;copy_process();Difference between parent and child after fork;int glob = 6; /* external variable in initialized data */ char buf[ ] = a write to stdout\n; int main(void) { int var; /* automatic variable on the stack */ pid_t pid; var = 88; if (write(STDOUT_FILENO, buf, sizeof(buf)-1) != sizeof(buf)-1) err_sys(write error); printf(before fork\n); /* we dont flush stdout */ if ( (pid = fork()) 0) err_sys(fork error); else if (pid == 0) { /* child */ glob++; /* modify variables */ var++; } else sleep(2); /* parent */ printf(pid = %d, glob = %d, var = %d\n, getpid(), glob, var); exit(0); };打印两次,因为,标准I/O库对普通输出是全缓存的。;badPID.c;File sharing;Sharing of open files after fork;Two uses for fork;processchain.c;processfan.c;exit Function;exit Function (Cont.);do_exit();wait and waitpid Function;删除进程描述符;fanwait.c;parentwait.c;chainwaitmsg.c;wait and waitpid Function (Cont.);wait and waitpid Function (Cont.);Showreturn.c;showreturnmain.c;wait and waitpid Function (Cont.);wait and waitpid Function (Cont.);wait and waitpid Function (Cont.);wait3

文档评论(0)

小苏老师 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档