-
Notifications
You must be signed in to change notification settings - Fork 4
/
pipes.c
108 lines (85 loc) · 1.87 KB
/
pipes.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "decls.h"
typedef struct state { int tx[2], rx[2]; } state;
state *new_state() { return calloc(sizeof(state), 1); }
void free_state(state *state) { free(state); }
int pre_fork_setup(state *state) {
if (pipe(state->tx)) {
// uh-oh
}
if (pipe(state->rx)) {
// uh-oh
}
return 0;
}
int cleanup(state *state __attribute__((unused))) { return 0; }
int child_post_fork_setup(state *state) {
close(state->tx[1]);
close(state->rx[0]);
return 0;
}
int child_warmup(int warmup_iters __attribute__((unused)),
state *state __attribute__((unused))) {
return 0;
}
int child_loop(int iters __attribute__((unused)), state *state) {
int tx_fd = state->rx[1];
int rx_fd = state->tx[0];
for (;;) {
char msg;
read(rx_fd, &msg, 1);
write(tx_fd, "1", 1);
}
return 0;
}
int child_cleanup(state *state) {
close(state->tx[0]);
close(state->rx[1]);
return 0;
}
int parent_post_fork_setup(state *state) {
close(state->tx[0]);
close(state->rx[1]);
return 0;
}
int parent_warmup(int warmup_iters, state *state) {
int i;
int tx_fd = state->tx[1];
int rx_fd = state->rx[0];
for (i = 0; i < warmup_iters; ++i) {
char resp;
if (write(tx_fd, "0", 1) == -1) {
perror("could not write");
break;
};
if (read(rx_fd, &resp, 1) == -1) {
perror("could not read");
break;
}
}
return 0;
}
int parent_loop(int iters, state *state) {
int i;
int tx_fd = state->tx[1];
int rx_fd = state->rx[0];
for (i = 0; i < iters; ++i) {
char resp;
if (write(tx_fd, "0", 1) == -1) {
perror("could not write");
break;
};
if (read(rx_fd, &resp, 1) == -1) {
perror("could not read");
break;
}
}
return 0;
}
int parent_cleanup(state *state) {
close(state->tx[1]);
close(state->rx[0]);
return 0;
}