authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-10-26 07:50:23+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-10-26 08:48:21+01:00
logc9e0df97f9f3cb4fff92769d0715ebba9e31be44
tree6c95e6a215cc028cb705b649cef4361bf120499c
parent0ec45050e0e5f503ebd35473e797ab73f8e64f09

std.debug.cpu_context: fix mcontext alignment for x86_64-illumos

It contains a upad128_t array which increases its alignment.

1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/debug/cpu_context.zig+1-1
......@@ -1997,7 +1997,7 @@ const signal_ucontext_t = switch (native_os) {
19971997 },
19981998 // https://github.com/illumos/illumos-gate/blob/d4ce137bba3bd16823db6374d9e9a643264ce245/usr/src/uts/intel/sys/mcontext.h
19991999 .x86_64 => extern struct {
2000 r15: u64,
2000 r15: u64 align(16),
20012001 r14: u64,
20022002 r13: u64,
20032003 r12: u64,