blob: 982311eb0da81d9acd11397036c03df62220fce0 (
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
|
#include <assert.h>
#include <time.h>
#include <pthread.h>
#include <stdio.h>
#include <unistd.h>
static void *worker(void *arg) {
(void)arg;
flockfile(stdout);
fputs_unlocked("hello from worker", stdout);
funlockfile(stdout);
return NULL;
}
int main() {
// Check that recursive locking works.
assert(!ftrylockfile(stdout));
flockfile(stdout);
flockfile(stdout);
funlockfile(stdout);
funlockfile(stdout);
funlockfile(stdout);
assert(!ftrylockfile(stdout));
pthread_t thread;
int ret = pthread_create(&thread, NULL, &worker, NULL);
assert(!ret);
sleep(1);
funlockfile(stdout);
assert(!pthread_join(thread, NULL));
return 0;
}
|