| author | |
| committer | |
| log | abf90eaa674782e092e49bb23c4c7da0f581f604 |
| tree | 9a07ae86f1656726e1d3804dc4fa0d86b30a2adb |
| parent | a42542099392cf189b96bdd77ecd88feadfb6382 |
2 files changed, 4 insertions(+), 4 deletions(-)
std/atomic/queue.zig+2-2| ... | ... | @@ -53,8 +53,8 @@ const puts_per_thread = 10000; |
| 53 | 53 | const put_thread_count = 3; |
| 54 | 54 | |
| 55 | 55 | test "std.atomic.queue" { |
| 56 | if (builtin.os != builtin.Os.linux) { | |
| 57 | // TODO implement kernel threads for windows and macos | |
| 56 | if (builtin.os == builtin.Os.windows) { | |
| 57 | // TODO implement kernel threads for windows | |
| 58 | 58 | return; |
| 59 | 59 | } |
| 60 | 60 | var direct_allocator = std.heap.DirectAllocator.init(); |
std/atomic/stack.zig+2-2| ... | ... | @@ -60,8 +60,8 @@ const puts_per_thread = 1000; |
| 60 | 60 | const put_thread_count = 3; |
| 61 | 61 | |
| 62 | 62 | test "std.atomic.stack" { |
| 63 | if (builtin.os != builtin.Os.linux) { | |
| 64 | // TODO implement kernel threads for windows and macos | |
| 63 | if (builtin.os == builtin.Os.windows) { | |
| 64 | // TODO implement kernel threads for windows | |
| 65 | 65 | return; |
| 66 | 66 | } |
| 67 | 67 | var direct_allocator = std.heap.DirectAllocator.init(); |