-
Notifications
You must be signed in to change notification settings - Fork 0
/
A1P7.c
35 lines (32 loc) · 1020 Bytes
/
A1P7.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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX 256
int main(){
int tuberia[2];
int pid;
char mensaje[MAX];
if (pipe(tuberia) == -1){
perror("pipe");
exit(-1);
}
if((pid = fork()) == -1){
perror("fork");
exit(-1);
}
else if(pid == 0){
while(read(tuberia[0],mensaje,MAX) > 0 && strcmp(mensaje,"FIN") != 0){
printf("PROCESO RECEPTOR. MENSAJE: %s\n", mensaje);
close(tuberia[0]);
close(tuberia[1]);
exit(0);
}
}
else{
while(printf("PROCESO EMISOR. MENSAJE:") != 0 && gets(mensaje) != NULL && write(tuberia[1], mensaje,strlen(mensaje) + 1) > 0 && strc>
close(tuberia[0]);
close(tuberia[1]);
exit(0);
}
}
}