diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby/ext/io.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/mruby/ext/io.h b/include/mruby/ext/io.h index 3107f1053..8f412fc02 100644 --- a/include/mruby/ext/io.h +++ b/include/mruby/ext/io.h @@ -13,7 +13,8 @@ struct mrb_io { int fd; /* file descriptor, or -1 */ int fd2; /* file descriptor to write if it's different from fd, or -1 */ int pid; /* child's pid (for pipes) */ - unsigned int writable:1, + unsigned int readable:1, + writable:1, sync:1; }; |
