| author | |
| committer | |
| log | 13ef792cc6b52a2a7ca684eff48d09d7c2bdad37 |
| tree | ab92e3be7a96d68533846b3ee1dbbf3abf2da4c5 |
| parent | 3ef1266582115baac5fa1ca299092140f7574684 |
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), |