| author | |
| committer | |
| log | b996675dcf5533e506eee0ed44c64aebab69af6e |
| tree | ceb5916b367109f8899127f6e7983f58ba04ee0f |
| parent | e0d06b40e3681cc9aad09764987d079fb0f9e0fa |
1 files changed, 1 insertions(+), 4 deletions(-)
lib/std/process/Child.zig+1-4| ... | ... | @@ -125,10 +125,7 @@ pub fn wait(child: *Child, io: Io) WaitError!Term { |
| 125 | 125 | return io.vtable.childWait(io.userdata, child); |
| 126 | 126 | } |
| 127 | 127 | |
| 128 | pub const CollectOutputError = error{ | |
| 129 | Timeout, | |
| 130 | StreamTooLong, | |
| 131 | } || Allocator.Error || Io.File.Reader.Error; | |
| 128 | pub const CollectOutputError = error{StreamTooLong} || Allocator.Error || Io.File.Reader.Error; | |
| 132 | 129 | |
| 133 | 130 | pub const CollectOutputOptions = struct { |
| 134 | 131 | stdout: *std.ArrayList(u8), |