mirror of
https://github.com/ziglang/zig.git
synced 2024-11-22 04:10:13 +00:00
Compare commits
2 Commits
6127506c87
...
f14b1733d7
Author | SHA1 | Date | |
---|---|---|---|
|
f14b1733d7 | ||
|
f845fa04a0 |
@ -48,7 +48,8 @@ fn read(ma: *MemoryAccessor, address: usize, buf: []u8) bool {
|
|||||||
switch (linux.E.init(bytes_read)) {
|
switch (linux.E.init(bytes_read)) {
|
||||||
.SUCCESS => return bytes_read == buf.len,
|
.SUCCESS => return bytes_read == buf.len,
|
||||||
.FAULT => return false,
|
.FAULT => return false,
|
||||||
.INVAL, .PERM, .SRCH => unreachable, // own pid is always valid
|
.INVAL, .SRCH => unreachable, // own pid is always valid
|
||||||
|
.PERM => {}, // Known to happen in containers.
|
||||||
.NOMEM => {},
|
.NOMEM => {},
|
||||||
.NOSYS => {}, // QEMU is known not to implement this syscall.
|
.NOSYS => {}, // QEMU is known not to implement this syscall.
|
||||||
else => unreachable, // unexpected
|
else => unreachable, // unexpected
|
||||||
|
Loading…
Reference in New Issue
Block a user