| ... | @@ -38,7 +38,7 @@ void os_spawn_process(const char *exe, ZigList<const char *> &args, bool detache | ... | @@ -38,7 +38,7 @@ void os_spawn_process(const char *exe, ZigList<const char *> &args, bool detache |
| 38 | } | 38 | } |
| 39 | | 39 | |
| 40 | static void read_all_fd(int fd, Buf *out_buf) { | 40 | static void read_all_fd(int fd, Buf *out_buf) { |
| 41 | static const ssize_t buf_size = 8192; | 41 | static const ssize_t buf_size = 0x2000; |
| 42 | buf_resize(out_buf, buf_size); | 42 | buf_resize(out_buf, buf_size); |
| 43 | ssize_t actual_buf_len = 0; | 43 | ssize_t actual_buf_len = 0; |
| 44 | for (;;) { | 44 | for (;;) { |