-
-
-
[
Visual C++ (VC++)]
process_item_process.zip
Set out the process of system operation and KILL some process, tlist system can list running processes, kill kill the process tool, COMMON document is a public function
-
-
-
[
C/C++]
book10072001.tar.gz
... deal and the eject button to close the window. Closing a window (or hit the eject button) may not result in the application exiting. By Ctrl-C in the terminal window or use the kill command can be achieved in the implementation of the end of the form.
-
-
-
-
[
Unix_Linux]
xoxo.rar
three proceses , one proces read some mesages entered from the keyboard until read s EXIT, the the second process kill his son, than kill himself.
-
[
Unix_Linux]
theprocess.rar
... 段程序,使其实现进程的软中断通信。
要求:使用系统调用fork()创建两个子进程,再用系统调用signal()让父进程捕捉键盘上来的中断
信号;当捕捉到中断信号后,父进程用系统调用kill()向两个子进程发出信号,子进程捕捉到信号后
分别输出下列信息后终止:
Child Process11 is Killed by Parent!
Child Process12 is Killed by Parent!
父进程等待两个子进程终止后,输出如下的信息后终止:
Parent ...