5be5d85e
Vincent Benoist
tp processus
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <unistd.h>
int main(){
int fork1, fork2, fork3;
if((fork1=fork())<0){
perror("erreur exec du fork");
exit(1);
}
if(fork1 == 0){
if(execlp("who","who",NULL)==-1){
perror("echec execlp");
exit(1);
}
}else{
int pid, r;
if((pid= wait(&r)) <0){
perror("erreur exec du wait");
exit(1);
}
if((fork2=fork())<0){
perror("erreur exec du fork");
exit(1);
}
if(fork2 == 0){
if(execlp("ps","ps","-x",NULL)==-1){
perror("echec execlp");
exit(1);
}
}else{
if((pid= wait(&r)) <0){
perror("erreur exec du wait");
exit(1);
}
if((fork3=fork())<0){
perror("erreur exec du fork");
exit(1);
}
if(fork3 == 0){
if(execlp("ls","ls","-la",NULL)==-1){
perror("echec execlp");
exit(1);
}
}else{
if((pid= wait(&r)) <0){
perror("erreur exec du wait");
exit(1);
}
}
}
}
return 0;
}
|