zig/lib/std/os/windows
LemonBoy dc810eb73b std: Avoid deadlocking in ChildProcess.exec
Reading stdin&stderr at different times may lead to nasty deadlocks (eg.
when stdout is read before stderr and the child process doesn't write
anything onto stdout).

Implement a polling mechanism to make sure this won't happen: we read
data from stderr/stdout as it becomes ready and then it's copied into an
ArrayList provided by the user, avoiding any kind of blocking read.
2020-12-29 10:40:00 -07:00
..
advapi32.zig Update code to not use unsupported calling conventions for target 2020-11-19 14:01:07 +02:00
bits.zig std: Avoid deadlocking in ChildProcess.exec 2020-12-29 10:40:00 -07:00
gdi32.zig Update code to not use unsupported calling conventions for target 2020-11-19 14:01:07 +02:00
kernel32.zig std: Avoid deadlocking in ChildProcess.exec 2020-12-29 10:40:00 -07:00
lang.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
ntdll.zig small fixes and zig fmt 2020-12-09 13:54:26 +02:00
ntstatus.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
ole32.zig Update code to not use unsupported calling conventions for target 2020-11-19 14:01:07 +02:00
psapi.zig Update code to not use unsupported calling conventions for target 2020-11-19 14:01:07 +02:00
shell32.zig Update code to not use unsupported calling conventions for target 2020-11-19 14:01:07 +02:00
sublang.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
user32.zig Update code to not use unsupported calling conventions for target 2020-11-19 14:01:07 +02:00
win32error.zig add license header to all std lib files 2020-08-20 16:07:04 -04:00
ws2_32.zig add std.os.shutdown function for sockets 2020-11-30 11:25:03 -08:00