aboutsummaryrefslogtreecommitdiff
path: root/lib/std/Thread.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2025-01-29 14:16:25 -0800
committerAndrew Kelley <andrew@ziglang.org>2025-02-06 14:23:23 -0800
commit284de7d957037c8a7032bd6e2a95bd5f55b73666 (patch)
tree852d4ef1e8fd8c052485fd38d0dcdfafd28594bb /lib/std/Thread.zig
parent439667be0476f5bf60f3efbb82a3c4d5aae96ee4 (diff)
downloadzig-284de7d957037c8a7032bd6e2a95bd5f55b73666.tar.gz
zig-284de7d957037c8a7032bd6e2a95bd5f55b73666.zip
adjust runtime page size APIs
* fix merge conflicts * rename the declarations * reword documentation * extract FixedBufferAllocator to separate file * take advantage of locals * remove the assertion about max alignment in Allocator API, leaving it Allocator implementation defined * fix non-inline function call in start logic The GeneralPurposeAllocator implementation is totally broken because it uses global state but I didn't address that in this commit.
Diffstat (limited to 'lib/std/Thread.zig')
-rw-r--r--lib/std/Thread.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/Thread.zig b/lib/std/Thread.zig
index 3be80c1641..6dcb956184 100644
--- a/lib/std/Thread.zig
+++ b/lib/std/Thread.zig
@@ -1155,7 +1155,7 @@ const LinuxThreadImpl = struct {
completion: Completion = Completion.init(.running),
child_tid: std.atomic.Value(i32) = std.atomic.Value(i32).init(1),
parent_tid: i32 = undefined,
- mapped: []align(std.heap.min_page_size) u8,
+ mapped: []align(std.heap.page_size_min) u8,
/// Calls `munmap(mapped.ptr, mapped.len)` then `exit(1)` without touching the stack (which lives in `mapped.ptr`).
/// Ported over from musl libc's pthread detached implementation: