blob: feee49c72c6f32c01fbb7293e4e9bebf64c03f37 (
plain)
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
|
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <pthread.h>
int global;
void * thread(void *joiner)
{
void *status;
global = pthread_self();
sleep(1);
printf("Parent PID is %d, TID is %d, global = %d\n",
getppid(), pthread_self(), global);
if (joiner) {
if (pthread_join((pthread_t)joiner, &status)) {
exit(1);
}
}
pthread_exit((void*) 0);
}
int main(void)
{
void *status;
int x;
pthread_attr_t attr;
pthread_t curr_thr_id;
pthread_t prev_thr_id;
if (pthread_attr_init(&attr)) {
exit(1);
}
if (pthread_attr_setschedpolicy(&attr, SCHED_OTHER)) {
exit(1);
}
/* Start 3 threads */
prev_thr_id = 0;
for (x=0; x<3; x++) {
/*
Fill in the code ala ...
if (pthread_create(¤tThreadID, &attribute,
thread, (void*)previousThreadID)) {
exit(1);
}
*/
/* insert your code here */
prev_thr_id = curr_thr_id;
}
/* Join last thread */
pthread_join(curr_thr_id, &status);
}
|