blob: b78674fad8ff780fdcb8d57642053be7726c4c41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include <assert.h>
#include <time.h>
#include <pthread.h>
int variable = 0;
static void *worker(void *arg) {
(void) arg;
variable = 1;
return NULL;
}
int main() {
pthread_t thread;
int ret = pthread_create(&thread, NULL, &worker, NULL);
assert(!ret);
ret = pthread_join(thread, NULL);
assert(!ret);
assert(variable == 1);
return 0;
}
|