| author | |
| committer | |
| log | 367be3777c7dcdd8ca19de0b2a8e2dc4b91486e0 |
| tree | 69e8b43c13626269bac9793052f0efcc24816e69 |
| parent | e351ee3b7f3eb2023b8c391b0db2655707183e62 |
| signature |
1 files changed, 3 insertions(+), 4 deletions(-)
lib/std/Thread.zig+3-4| ... | ... | @@ -83,10 +83,9 @@ pub fn sleep(nanoseconds: u64) void { |
| 83 | 83 | req = rem; |
| 84 | 84 | continue; |
| 85 | 85 | }, |
| 86 | .FAULT, | |
| 87 | .INVAL, | |
| 88 | .OPNOTSUPP, | |
| 89 | => unreachable, | |
| 86 | .FAULT => unreachable, | |
| 87 | .INVAL => unreachable, | |
| 88 | .OPNOTSUPP => unreachable, | |
| 90 | 89 | else => return, |
| 91 | 90 | } |
| 92 | 91 | } |