| 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,8 +53,8 @@ const puts_per_thread = 10000; |
| 53 | const put_thread_count = 3; | 53 | const put_thread_count = 3; |
| 54 | 54 | ||
| 55 | test "std.atomic.queue" { | 55 | test "std.atomic.queue" { |
| 56 | if (builtin.os != builtin.Os.linux) { | 56 | if (builtin.os == builtin.Os.windows) { |
| 57 | // TODO implement kernel threads for windows and macos | 57 | // TODO implement kernel threads for windows |
| 58 | return; | 58 | return; |
| 59 | } | 59 | } |
| 60 | var direct_allocator = std.heap.DirectAllocator.init(); | 60 | var direct_allocator = std.heap.DirectAllocator.init(); |
std/atomic/stack.zig+2-2| ... | @@ -60,8 +60,8 @@ const puts_per_thread = 1000; | ... | @@ -60,8 +60,8 @@ const puts_per_thread = 1000; |
| 60 | const put_thread_count = 3; | 60 | const put_thread_count = 3; |
| 61 | 61 | ||
| 62 | test "std.atomic.stack" { | 62 | test "std.atomic.stack" { |
| 63 | if (builtin.os != builtin.Os.linux) { | 63 | if (builtin.os == builtin.Os.windows) { |
| 64 | // TODO implement kernel threads for windows and macos | 64 | // TODO implement kernel threads for windows |
| 65 | return; | 65 | return; |
| 66 | } | 66 | } |
| 67 | var direct_allocator = std.heap.DirectAllocator.init(); | 67 | var direct_allocator = std.heap.DirectAllocator.init(); |