-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprog16.c
40 lines (34 loc) · 1.08 KB
/
prog16.c
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
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <string.h>
char msg[80] = "Eu nao sou ninguem ...";
int main(int argc,char *argv[]) {
pid_t filho1, filho2;
int estado;
system("clear");
printf("Processo-Pai: Iniciando a execucao.\n");
filho1=fork();
if ( filho1 == 0) {
printf("Processo-Filho 1: Iniciando a execucao.\n");
printf("Processo-Filho 1: O valor de MSG e %s.\n",msg);
strcpy(msg,"Eu sou o processo FILHO 1.");
printf("Processo-Filho 1: O valor de MSG e %s.\n",msg);
printf("Processo-Filho 1: Encerrando a execucao.\n");
exit(0);
}
filho2=fork();
if ( filho2 == 0) {
printf("Processo-Filho 2: Iniciando a execucao.\n");
printf("Processo-Filho 2: O valor de MSG e %s.\n",msg);
strcpy(msg,"Eu sou o processo FILHO 2.");
printf("Processo-Filho 2: O valor de MSG e %s.\n",msg);
printf("Processo-Filho 2: Encerrando a execucao.\n");
exit(0);
}
waitpid(filho1,estado,0);
waitpid(filho2,estado,0);
printf("Processo-Pai: O valor de MSG e %s.\n",msg);
printf("Processo-Pai: Encerrando a execucao.\n");
return 0;
}