ajout fichiers
This commit is contained in:
parent
f497652e47
commit
8f44fb0636
26
TD2/Exemple1.c
Normal file
26
TD2/Exemple1.c
Normal file
@ -0,0 +1,26 @@
|
||||
#include <unistd.h>
|
||||
#include <sys/types.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/wait.h>
|
||||
|
||||
int main() {
|
||||
|
||||
pid_t fils_pid ;
|
||||
|
||||
fils_pid = fork ();
|
||||
|
||||
if ( fils_pid == 0) {
|
||||
printf("Je suis le fils avec pid %d\n",getpid()); exit(3);
|
||||
} else {
|
||||
if (fils_pid > 0) {
|
||||
printf ("Je suis le pere avec pid %d.\n" , getpid ());
|
||||
printf("J’attends que mon fils se termine\n");
|
||||
wait (NULL) ;
|
||||
printf("Normalement mon fils en a fini!\n");
|
||||
} else {
|
||||
printf("Erreur dans la creation du fils\n");
|
||||
}
|
||||
}
|
||||
exit (0);
|
||||
}
|
24
TD2/Exemple2.c
Normal file
24
TD2/Exemple2.c
Normal file
@ -0,0 +1,24 @@
|
||||
/* fork2b.c */
|
||||
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
|
||||
int i, n = 5;
|
||||
pid_t childpid;
|
||||
|
||||
for (i=0; i<n; i++) {
|
||||
if ((childpid = fork()) == -1) break;
|
||||
if (childpid == 0)
|
||||
printf("Processus %d avec pere %d, i = %d\n", getpid(), getppid(), i);
|
||||
}
|
||||
|
||||
while (wait(NULL) >= 0)
|
||||
;
|
||||
|
||||
return EXIT_SUCCESS;
|
||||
}
|
45
TD2/Exemple3.c
Normal file
45
TD2/Exemple3.c
Normal file
@ -0,0 +1,45 @@
|
||||
#include <sys/wait.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
|
||||
|
||||
void fils(int i);
|
||||
|
||||
int main() {
|
||||
int status ;
|
||||
pid_t pid;
|
||||
|
||||
pid = fork();
|
||||
|
||||
if (pid == -1) perror("fork");
|
||||
else if (pid ==0) // creation du second fils
|
||||
fils (1) ;
|
||||
|
||||
pid = fork();
|
||||
|
||||
if (pid == -1) perror("fork");
|
||||
else if (pid ==0) // creation du second fils
|
||||
fils (2) ;
|
||||
|
||||
|
||||
if (wait(&status) > 0)
|
||||
printf("fin du fils %d\n", WEXITSTATUS(status));
|
||||
else perror("wait");
|
||||
|
||||
if (wait(&status) > 0)
|
||||
printf("fin du fils %d\n", WEXITSTATUS(status));
|
||||
else perror("wait");
|
||||
|
||||
|
||||
if (wait(&status) > 0)
|
||||
printf("fin du fils %d\n", WEXITSTATUS(status));
|
||||
else perror("wait");
|
||||
|
||||
return 0 ;
|
||||
}
|
||||
|
||||
void fils (int i) {
|
||||
sleep(2);
|
||||
exit(i);
|
||||
}
|
Loading…
Reference in New Issue
Block a user