| ... | @@ -993,7 +993,7 @@ pub fn write(fd: fd_t, bytes: []const u8) WriteError!usize { | ... | @@ -993,7 +993,7 @@ pub fn write(fd: fd_t, bytes: []const u8) WriteError!usize { |
| 993 | /// transfer further bytes or may result in an error (e.g., if the disk is now full). | 993 | /// transfer further bytes or may result in an error (e.g., if the disk is now full). |
| 994 | /// | 994 | /// |
| 995 | /// For POSIX systems, if `fd` is opened in non blocking mode, the function will | 995 | /// For POSIX systems, if `fd` is opened in non blocking mode, the function will |
| 996 | /// return error.WouldBlock when EAGAIN is received.k`. | 996 | /// return error.WouldBlock when EAGAIN is received. |
| 997 | /// On Windows, if the application has a global event loop enabled, I/O Completion Ports are | 997 | /// On Windows, if the application has a global event loop enabled, I/O Completion Ports are |
| 998 | /// used to perform the I/O. `error.WouldBlock` is not possible on Windows. | 998 | /// used to perform the I/O. `error.WouldBlock` is not possible on Windows. |
| 999 | /// | 999 | /// |