File tree 2 files changed +24
-0
lines changed
src/unix/bsd/netbsdlike/netbsd 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -3172,6 +3172,9 @@ cfg_if! {
3172
3172
} else if #[ cfg( target_arch = "x86" ) ] {
3173
3173
mod x86;
3174
3174
pub use self :: x86:: * ;
3175
+ } else if #[ cfg( target_arch = "riscv64" ) ] {
3176
+ mod riscv64;
3177
+ pub use self :: riscv64:: * ;
3175
3178
} else {
3176
3179
// Unknown target_arch
3177
3180
}
Original file line number Diff line number Diff line change
1
+ use PT_FIRSTMACH ;
2
+
3
+ pub type c_long = i64 ;
4
+ pub type c_ulong = u64 ;
5
+ pub type c_char = u8 ;
6
+ pub type __cpu_simple_lock_nv_t = :: c_int ;
7
+
8
+ cfg_if ! {
9
+ if #[ cfg( libc_const_size_of) ] {
10
+ #[ doc( hidden) ]
11
+ pub const _ALIGNBYTES: usize = :: mem:: size_of:: <:: c_long>( ) - 1 ;
12
+ } else {
13
+ #[ doc( hidden) ]
14
+ pub const _ALIGNBYTES: usize = 8 - 1 ;
15
+ }
16
+ }
17
+
18
+ pub const PT_GETREGS : :: c_int = PT_FIRSTMACH + 0 ;
19
+ pub const PT_SETREGS : :: c_int = PT_FIRSTMACH + 1 ;
20
+ pub const PT_GETFPREGS : :: c_int = PT_FIRSTMACH + 2 ;
21
+ pub const PT_SETFPREGS : :: c_int = PT_FIRSTMACH + 3 ;
You can’t perform that action at this time.
0 commit comments