michile

导航

上一页 1 ··· 7 8 9 10 11 12 下一页

2013年2月2日

advacing lnux program --zombie process [copy]

摘要: A zombie processis a process that has terminated but has not been cleaned up yet. Itis the responsibility of the parent process to clean up its zombie children.The waitfunctions do this, too, so it’s not necessary to track whether your child process is stillexecuting before waiting for it. Suppose, 阅读全文

posted @ 2013-02-02 23:34 michile 阅读(160) 评论(0) 推荐(0) 编辑

advancing linux program -exit [copy]

摘要: In fact, you should use exit codes only between zero and 127. Exit codes above 128 havea special meaning—when a process is terminated by a signal, its exit code is 128 plusthe signal number.To send a signal from a program, use the killfunction.The first parameter is the tar-get process ID.The second 阅读全文

posted @ 2013-02-02 23:18 michile 阅读(164) 评论(0) 推荐(0) 编辑

linux advancing program --signal [copy]

摘要: Signalsare mechanisms for communicating with and manipulating processes in Linux.The topic of signals is a large one; here we discuss some of the most important signalsand techniques that are used for controlling processes.A signal is a special message sent to a process. Signals are asynchronous; wh 阅读全文

posted @ 2013-02-02 22:46 michile 阅读(284) 评论(0) 推荐(0) 编辑

linux exec函数族

摘要: http://linux.chinaitlab.com/c/836989.htmlhttp://www.cnblogs.com/hnrainll/archive/2011/07/23/2114854.html 阅读全文

posted @ 2013-02-02 12:28 michile 阅读(168) 评论(0) 推荐(0) 编辑

2013年2月1日

内存管理内幕

摘要: https://www.ibm.com/developerworks/cn/linux/l-memory/ 阅读全文

posted @ 2013-02-01 23:15 michile 阅读(92) 评论(0) 推荐(0) 编辑

上一页 1 ··· 7 8 9 10 11 12 下一页