摘要:
ctrl + c --> 2)SIGINT ctrl + \ --> 3)SIGQUIT 13)SIGPIPE 当管道读端关闭,再往管道写东西,会发出SIGPIPE信号 17)SIGCHLD 子进程退出会向父进程发出SIGCHLD信号,系统默认处理是忽略掉该信号 #include<stdio.h> 阅读全文
摘要:
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <pthread.h> int ticket_cnt = 20; /* 共有20张票 */ typedef struct tag { int s_id; pthre 阅读全文