|
| 1 | +s_no_extra_traits! { |
| 2 | + #[allow(missing_debug_implementations)] |
| 3 | + pub struct ucontext_t { |
| 4 | + pub __uc_flags: ::c_ulong, |
| 5 | + pub uc_link: *mut ucontext_t, |
| 6 | + pub uc_stack: ::stack_t, |
| 7 | + pub uc_sigmask: ::sigset_t, |
| 8 | + pub uc_mcontext: mcontext_t, |
| 9 | + } |
| 10 | + |
| 11 | + #[allow(missing_debug_implementations)] |
| 12 | + #[repr(align(16))] |
| 13 | + pub struct mcontext_t { |
| 14 | + pub __gregs: [::c_ulong; 32], |
| 15 | + pub __fpregs: __riscv_mc_fp_state, |
| 16 | + } |
| 17 | + |
| 18 | + #[allow(missing_debug_implementations)] |
| 19 | + pub union __riscv_mc_fp_state { |
| 20 | + pub __f: __riscv_mc_f_ext_state, |
| 21 | + pub __d: __riscv_mc_d_ext_state, |
| 22 | + pub __q: __riscv_mc_q_ext_state, |
| 23 | + } |
| 24 | + |
| 25 | + #[allow(missing_debug_implementations)] |
| 26 | + pub struct __riscv_mc_f_ext_state { |
| 27 | + pub __f: [::c_uint; 32], |
| 28 | + pub __fcsr: ::c_uint, |
| 29 | + } |
| 30 | + |
| 31 | + #[allow(missing_debug_implementations)] |
| 32 | + pub struct __riscv_mc_d_ext_state { |
| 33 | + pub __f: [::c_ulonglong; 32], |
| 34 | + pub __fcsr: ::c_uint, |
| 35 | + } |
| 36 | + |
| 37 | + #[allow(missing_debug_implementations)] |
| 38 | + #[repr(align(16))] |
| 39 | + pub struct __riscv_mc_q_ext_state { |
| 40 | + pub __f: [::c_ulonglong; 64], |
| 41 | + pub __fcsr: ::c_uint, |
| 42 | + pub __glibc_reserved: [::c_uint; 3], |
| 43 | + } |
| 44 | +} |
0 commit comments