mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +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
19 lines
741 B
C
19 lines
741 B
C
#ifndef COSMOPOLITAN_LIBC_NT_ENUM_THREADACCESS_H_
|
|
#define COSMOPOLITAN_LIBC_NT_ENUM_THREADACCESS_H_
|
|
#include "libc/nt/enum/accessmask.h"
|
|
|
|
#define kNtThreadTerminate 0x0001
|
|
#define kNtThreadSuspendResume 0x0002
|
|
#define kNtThreadGetContext 0x0008
|
|
#define kNtThreadSetContext 0x0010
|
|
#define kNtThreadQueryInformation 0x0040
|
|
#define kNtThreadSetInformation 0x0020
|
|
#define kNtThreadSetThreadToken 0x0080
|
|
#define kNtThreadImpersonate 0x0100
|
|
#define kNtThreadDirectImpersonation 0x0200
|
|
#define kNtThreadSetLimitedInformation 0x0400
|
|
#define kNtThreadQueryLimitedInformation 0x0800
|
|
#define kNtThreadResume 0x1000
|
|
#define kNtThreadAllAccess (kNtStandardRightsRequired | kNtSynchronize | 0xFFFF)
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_NT_ENUM_THREADACCESS_H_ */
|