]>
Piment Noir Git Repositories - TD_SE.git/blobdiff - TD3/exo4/exo4.c
if (fork() == 0) {
signal(SIGINT, sigintF);
while (1) {
- printf("ici fils \n");
+ printf("ici fils\n");
sleep(1);
}
}
while (1) {
signal(SIGINT, sigintP);
- printf("ici pere \n");
+ printf("ici pere\n");
sleep(1);
}
- return 0;
}