mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
fa20edc44d
- 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
418 B
C
15 lines
418 B
C
#ifndef COSMOPOLITAN_LIBC_CALLS_PLEDGE_H_
|
|
#define COSMOPOLITAN_LIBC_CALLS_PLEDGE_H_
|
|
|
|
#define PLEDGE_PENALTY_KILL_THREAD 0x0000
|
|
#define PLEDGE_PENALTY_KILL_PROCESS 0x0001
|
|
#define PLEDGE_PENALTY_RETURN_EPERM 0x0002
|
|
#define PLEDGE_PENALTY_MASK 0x000f
|
|
#define PLEDGE_STDERR_LOGGING 0x0010
|
|
|
|
COSMOPOLITAN_C_START_
|
|
|
|
extern int __pledge_mode;
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* COSMOPOLITAN_LIBC_CALLS_PLEDGE_H_ */
|