-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.c
63 lines (48 loc) · 1.25 KB
/
test.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
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "channels.h"
typedef struct {
channel* chan;
int start;
} thread_data;
void* thread(void* arg) {
thread_data* data = arg;
printf("[thread%d] Spawned\n", data->start);
fflush(stdout);
int* value = malloc(sizeof(int));
*value = data->start;
printf("[thread%d] Sending %d\n", data->start, *value);
chan_send(data->chan, value);
printf("[thread%d] Exiting\n", data->start);
fflush(stdout);
return NULL;
}
int main() {
channel* chan = chan_create(0);
#define NUM_THREADS
pthread_t threads[NUM_THREADS];
for(int i = 0; i < NUM_THREADS; i++) {
thread_data* data = malloc(sizeof(thread_data));
data->chan = chan;
data->start = i;
pthread_create(&threads[i], NULL, thread, (void*)data);
}
printf("[main] Receiving from threads...\n");
fflush(stdout);
int sum = 0;
for(int i = 0; i < NUM_THREADS; i++) {
void* data;
chan_recv(chan, &data);
int value = *(int*)data;
printf("[main] Received %d\n", value);
sum += value;
free(data);
}
for(int i = 0; i < NUM_THREADS; i++) {
pthread_join(threads[i], NULL);
}
printf("[main] Total sum received: %d\n", sum);
fflush(stdout);
}