This source file includes following definitions.
- worker_thread_func
- main
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 #include <config.h>
20
21 #include <threads.h>
22
23 #include <stdio.h>
24 #include <string.h>
25
26 #include "macros.h"
27
28 static thrd_t main_thread_before;
29 static thrd_t main_thread_after;
30 static thrd_t worker_thread;
31
32 #define MAGIC 1266074729
33 static volatile int work_done;
34
35 static int
36 worker_thread_func (void *arg)
37 {
38 work_done = 1;
39 return MAGIC;
40 }
41
42 int
43 main ()
44 {
45 main_thread_before = thrd_current ();
46
47 if (thrd_create (&worker_thread, worker_thread_func, NULL) == thrd_success)
48 {
49 int ret;
50
51
52
53 main_thread_after = thrd_current ();
54 ASSERT (memcmp (&main_thread_before, &main_thread_after,
55 sizeof (thrd_t))
56 == 0);
57
58 ASSERT (thrd_join (worker_thread, &ret) == thrd_success);
59
60
61 ASSERT (ret == MAGIC);
62
63
64 ASSERT (work_done);
65
66 return 0;
67 }
68 else
69 {
70 fputs ("thrd_create failed\n", stderr);
71 return 1;
72 }
73 }