| author | |
| committer | |
| log | 76c83354506de11e58703766b4555d112c725129 |
| tree | 10182e70084f91e45183fe38ceeefa204481aa88 |
| parent | 3ec5617e97cd6ecdbefb9f04c25ac5a77d2ab427 |
1 files changed, 3 insertions(+), 0 deletions(-)
File.zig+3| ... | ... | @@ -94,6 +94,9 @@ pub usingnamespace nio.Writable(@This(), ._bare); |
| 94 | 94 | pub fn write(self: File, buffer: []const u8) WriteError!usize { |
| 95 | 95 | return sys.write(@intFromEnum(self.fd), buffer); |
| 96 | 96 | } |
| 97 | pub fn writev(self: File, iovec: []const sys.struct_iovec) WriteError!usize { | |
| 98 | return sys.writev(@intFromEnum(self.fd), iovec); | |
| 99 | } | |
| 97 | 100 | |
| 98 | 101 | pub const Stat = struct { |
| 99 | 102 | inode: INode, |