blob: 6c8e0845faf4c4bdc58615a63c94826dcadfe29b (
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
60
61
62
63
64
65
66
67
68
69
70
|
add_header_library(
threads_utils
HDRS
Futex.h
DEPENDS
libc.include.sys_syscall
libc.include.threads
libc.src.__support.CPP.atomic
libc.src.__support.CPP.mutex
libc.src.__support.OSUtil.osutil
libc.src.__support.threads.mutex
libc.src.__support.threads.linux.raw_mutex
libc.src.__support.threads.linux.futex_utils
)
add_entrypoint_object(
cnd_init
SRCS
cnd_init.cpp
HDRS
../cnd_init.h
DEPENDS
libc.include.threads
libc.src.__support.threads.CndVar
)
add_entrypoint_object(
cnd_destroy
SRCS
cnd_destroy.cpp
HDRS
../cnd_destroy.h
DEPENDS
libc.include.threads
libc.src.__support.threads.CndVar
)
add_entrypoint_object(
cnd_wait
SRCS
cnd_wait.cpp
HDRS
../cnd_wait.h
DEPENDS
libc.include.threads
libc.src.__support.threads.mutex
libc.src.__support.threads.CndVar
)
add_entrypoint_object(
cnd_signal
SRCS
cnd_signal.cpp
HDRS
../cnd_signal.h
DEPENDS
libc.include.threads
libc.src.__support.threads.CndVar
)
add_entrypoint_object(
cnd_broadcast
SRCS
cnd_broadcast.cpp
HDRS
../cnd_broadcast.h
DEPENDS
libc.include.threads
libc.src.__support.threads.CndVar
)
|