| author | |
| committer | |
| log | cbe38f771c0cb7d098878e8e703ed23620f868f7 |
| tree | 9f07af47bf6a8b5b92e6a61d23444eec80dafcd2 |
| parent | c6538b70f5f0a5a1da8895c169c2cb9189148d85 |
| signature |
Not doing so was hiding bugs (e.g. on s390x-linux).1 files changed, 1 insertions(+), 0 deletions(-)
lib/std/Io/Threaded.zig+1| ... | ... | @@ -16796,6 +16796,7 @@ fn createFileMap( |
| 16796 | 16796 | .OVERFLOW => return error.Unseekable, |
| 16797 | 16797 | .BADF => return errnoBug(err), // Always a race condition. |
| 16798 | 16798 | .INVAL => return errnoBug(err), // Invalid parameters to mmap() |
| 16799 | .OPNOTSUPP => return errnoBug(err), // Bad flags with MAP.SHARED_VALIDATE on Linux. | |
| 16799 | 16800 | else => return posix.unexpectedErrno(err), |
| 16800 | 16801 | } |
| 16801 | 16802 | }; |