#include <string.h> #include <stdlib.h> //static int mclock = 1; typedef struct { int mclock; } DEF; DEF adef; int mclock = 1; void sigroutine(int signo) { switch (signo) { case SIGALRM: adef.mclock = 1; mclock = 1; printf("catch a SIGALRM\n"); break; } } int main() { int maxproc = 5; pid_t pid; for(int i = 1; i <= maxproc; i++) { pid = fork(); if( pid < 0 ) { return -1; } else if( pid > 0 ) { continue; } else { adef.mclock = 1; int life = 20; while(1) { if ( 1 == adef.mclock) { printf("alarm at 5s reached!\n"); adef.mclock = 0; signal(SIGALRM,sigroutine); alarm(1); } else { printf("why is the alarm late?\n"); sleep (5); } life -= 1; if(life < 0) { exit(0); } } } } sleep(10); return 0; } |
欢迎光临 Chinaunix (http://bbs.chinaunix.net/) | Powered by Discuz! X3.2 |