File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
libc/include/llvm-libc-types Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ add_header(blksize_t HDR blksize_t.h)
21
21
add_header (cc_t HDR cc_t.h )
22
22
add_header (clock_t HDR clock_t.h )
23
23
add_header (clockid_t HDR clockid_t.h )
24
- add_header (cnd_t HDR cnd_t.h )
24
+ add_header (cnd_t HDR cnd_t.h DEPENDS .__futex_word )
25
25
add_header (cookie_io_functions_t HDR cookie_io_functions_t.h DEPENDS .off64_t .ssize_t )
26
26
add_header (cpu_set_t HDR cpu_set_t.h )
27
27
add_header (double_t HDR double_t.h )
Original file line number Diff line number Diff line change 9
9
#ifndef LLVM_LIBC_TYPES_CND_T_H
10
10
#define LLVM_LIBC_TYPES_CND_T_H
11
11
12
- #include "mtx_t .h"
12
+ #include "llvm-libc-types/__futex_word .h"
13
13
14
14
typedef struct {
15
15
void * __qfront ;
16
16
void * __qback ;
17
- mtx_t __qmtx ;
17
+ __futex_word __qmtx ;
18
18
} cnd_t ;
19
19
20
20
#endif // LLVM_LIBC_TYPES_CND_T_H
You can’t perform that action at this time.
0 commit comments