+aarch64.ha (275B)
1 // SPDX-License-Identifier: MPL-2.0 2 // (c) Hare authors <https://harelang.org> 3 4 export type sigcontext = struct { 5 __sc_unused: int, 6 sc_mask: int, 7 sc_sp: u64, 8 sc_lr: u64, 9 sc_elr: u64, 10 sc_spsr: u64, 11 sc_x: [30]u64, 12 sc_cookie: u64, 13 }; 14 15 export type ucontext = sigcontext;