| author | |
| committer | |
| log | a90eb50c8034134d9f22aeffb4ea11e83b056cc7 |
| tree | 70d3beb0057d2fef45ca76d2329cdaa96a22530d |
| parent | 8950831d3c4af4dd169e0a404e25e8aa9b045caa |
| signature |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/debug/cpu_context.zig+1-1| ... | @@ -146,7 +146,7 @@ pub fn fromPosixSignalContext(ctx_ptr: ?*const anyopaque) ?Native { | ... | @@ -146,7 +146,7 @@ pub fn fromPosixSignalContext(ctx_ptr: ?*const anyopaque) ?Native { |
| 146 | .pc = uc.mcontext.ss.pc, | 146 | .pc = uc.mcontext.ss.pc, |
| 147 | }, | 147 | }, |
| 148 | .netbsd => .{ | 148 | .netbsd => .{ |
| 149 | .x = uc.mcontext.gregs[0..31], | 149 | .x = uc.mcontext.gregs[0..31].*, |
| 150 | .sp = uc.mcontext.gregs[31], | 150 | .sp = uc.mcontext.gregs[31], |
| 151 | .pc = uc.mcontext.gregs[32], | 151 | .pc = uc.mcontext.gregs[32], |
| 152 | }, | 152 | }, |