mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
15 lines
357 B
C
15 lines
357 B
C
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_MLOCK_H_
|
|
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_MLOCK_H_
|
|
COSMOPOLITAN_C_START_
|
|
|
|
extern const int MCL_CURRENT;
|
|
extern const int MCL_FUTURE;
|
|
extern const int MCL_ONFAULT;
|
|
|
|
COSMOPOLITAN_C_END_
|
|
|
|
#define MCL_CURRENT 1
|
|
#define MCL_FUTURE 2
|
|
#define MCL_ONFAULT MCL_ONFAULT
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_MLOCK_H_ */
|