mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-14 15:09:09 +00:00
Improve Windows Console I/O
- 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
This commit is contained in:
parent
decf216655
commit
33d280c8ba
34 changed files with 580 additions and 376 deletions
|
@ -9,7 +9,6 @@
|
|||
# KERNEL32.DLL
|
||||
#
|
||||
# Name Actual DLL Arity
|
||||
imp '' CancelIoEx kernel32 2
|
||||
imp '' CloseHandle kernel32 1
|
||||
imp '' CreateDirectoryW kernel32 2
|
||||
imp '' CreateFileMappingNumaW kernel32 7
|
||||
|
@ -53,6 +52,7 @@ imp 'AttachConsole' AttachConsole kernel32 1
|
|||
imp 'CallNamedPipe' CallNamedPipeW kernel32 7
|
||||
imp 'CallNamedPipeA' CallNamedPipeA kernel32 7
|
||||
imp 'CancelIo' CancelIo kernel32 1
|
||||
imp 'CancelIoEx' CancelIoEx kernel32 2
|
||||
imp 'CancelSynchronousIo' CancelSynchronousIo kernel32 1
|
||||
imp 'CheckRemoteDebuggerPresent' CheckRemoteDebuggerPresent kernel32 2
|
||||
imp 'ClearCommBreak' ClearCommBreak kernel32 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue