添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
int main( int argc, const char * argv[]) signal(SIGCHLD,handler); // 注册信号回调函数,当信号发生会调用handler pid_t pid; pid = fork(); if (pid < 0 ) perror( " fork fail " ); exit( 1 ); else if (pid == 0 ) //子进程 while ( 1 ) printf( " child \n " ); sleep ( 1 ); else //父进程 sleep ( 1 ); //睡 1 秒 kill (pid,SIGKILL); // 杀死 pid 发送进程的信号,kill 给其他进程发送信号,指定进程号 printf( " child killed\n " ); printf( " father \n " ); wait (NULL); //等待回收子进程的资源 raise(SIGKILL); // 杀死自己的信号,函数raise 给自己发送信号 return 0 ;