mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
997ce29ddc
- SQLite file locking now works on Windows - SQLite will now use fdatasync() on non-Apple platforms - Fix Ctrl-C handler on Windows to not crash with TLS - Signals now work in multithreaded apps on Windows - fcntl() will now accurately report EINVAL errors - fcntl() now has excellent --strace logging - Token bucket replenish now go 100x faster - *NSYNC cancellations now work on Windows - Support closefrom() on NetBSD
12 lines
517 B
C
12 lines
517 B
C
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_DN_H_
|
|
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_DN_H_
|
|
|
|
#define DN_ACCESS 0x00000001 /* file accessed */
|
|
#define DN_MODIFY 0x00000002 /* file modified */
|
|
#define DN_CREATE 0x00000004 /* file created */
|
|
#define DN_DELETE 0x00000008 /* file removed */
|
|
#define DN_RENAME 0x00000010 /* file renamed */
|
|
#define DN_ATTRIB 0x00000020 /* file changed attibutes */
|
|
#define DN_MULTISHOT 0x80000000 /* don't remove notifier */
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_DN_H_ */
|