mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 06:53:33 +00:00
33d280c8ba
- Blocking read operations on the Windows Console can now EINTR - Blocking read operations on Windows pipes now EINTR more reliably - setitimer() will no longer be inherited across fork() on Windows - It's now possible to use ECHO when the console is in raw mode - The ECHOCTL flag now works correctly on the Windows Console - The ICRNL flag now works correctly on the Windows Console - pread() and pwrite() will now raise ESPIPE on Windows - Opening /dev/tty on Windows is improved (untested) - Overlapped I/O is now implemented in a better way
8 lines
244 B
C
8 lines
244 B
C
#ifndef COSMOPOLITAN_LIBC_NT_ENUM_WAIT_H_
|
|
#define COSMOPOLITAN_LIBC_NT_ENUM_WAIT_H_
|
|
|
|
#define kNtWaitFailed 0xffffffffu
|
|
#define kNtWaitTimeout 0x00000102u
|
|
#define kNtWaitAbandoned 0x00000080u
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_NT_ENUM_WAIT_H_ */
|