| author | |
| committer | |
| log | fe8c1cf804c3c39e57ca291baf005b862fc3ba94 |
| tree | e91a9d9c691847d3359fa25381084ea853519340 |
| parent | bb4abfdc78b527b315950ce9f233518cdaa6a72a |
1 files changed, 1 insertions(+), 2 deletions(-)
lib/std/spinlock.zig+1-2| ... | ... | @@ -2,8 +2,7 @@ const std = @import("std.zig"); |
| 2 | 2 | const builtin = @import("builtin"); |
| 3 | 3 | const assert = std.debug.assert; |
| 4 | 4 | const time = std.time; |
| 5 | const linux = std.os.linux; | |
| 6 | const windows = std.os.windows; | |
| 5 | const os = std.os; | |
| 7 | 6 | |
| 8 | 7 | pub const SpinLock = struct { |
| 9 | 8 | lock: u8, // TODO use a bool or enum |