File tree Expand file tree Collapse file tree 4 files changed +32
-0
lines changed
src/unix/bsd/netbsdlike/netbsd Expand file tree Collapse file tree 4 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ use self :: * ;
2+
13pub type c_long = i64 ;
24pub type c_ulong = u64 ;
35pub type c_char = u8 ;
6+
7+ pub const PT_GETREGS : :: c_int = PT_FIRSTMACH + 0 ;
8+ pub const PT_SETREGS : :: c_int = PT_FIRSTMACH + 1 ;
9+ pub const PT_GETFPREGS : :: c_int = PT_FIRSTMACH + 2 ;
10+ pub const PT_SETFPREGS : :: c_int = PT_FIRSTMACH + 3 ;
Original file line number Diff line number Diff line change 1+ use self :: * ;
2+
13pub type c_long = i32 ;
24pub type c_ulong = u32 ;
35pub type c_char = u8 ;
6+
7+ pub const PT_GETREGS : :: c_int = PT_FIRSTMACH + 1 ;
8+ pub const PT_SETREGS : :: c_int = PT_FIRSTMACH + 2 ;
9+ pub const PT_GETFPREGS : :: c_int = PT_FIRSTMACH + 3 ;
10+ pub const PT_SETFPREGS : :: c_int = PT_FIRSTMACH + 4 ;
Original file line number Diff line number Diff line change 1+ use self :: * ;
2+
13pub type c_long = i32 ;
24pub type c_ulong = u32 ;
35pub type c_char = u8 ;
6+
7+ pub const PT_STEP : :: c_int = PT_FIRSTMACH + 0 ;
8+ pub const PT_GETREGS : :: c_int = PT_FIRSTMACH + 1 ;
9+ pub const PT_SETREGS : :: c_int = PT_FIRSTMACH + 2 ;
Original file line number Diff line number Diff line change 1+ use self :: * ;
2+
13pub type c_long = i64 ;
24pub type c_ulong = u64 ;
35pub type c_char = i8 ;
6+
7+ pub const PT_STEP : :: c_int = PT_FIRSTMACH + 0 ;
8+ pub const PT_GETREGS : :: c_int = PT_FIRSTMACH + 1 ;
9+ pub const PT_SETREGS : :: c_int = PT_FIRSTMACH + 2 ;
10+ pub const PT_GETFPREGS : :: c_int = PT_FIRSTMACH + 3 ;
11+ pub const PT_SETFPREGS : :: c_int = PT_FIRSTMACH + 4 ;
12+ pub const PT_GETDBREGS : :: c_int = PT_FIRSTMACH + 5 ;
13+ pub const PT_SETDBREGS : :: c_int = PT_FIRSTMACH + 6 ;
14+ pub const PT_SETSTEP : :: c_int = PT_FIRSTMACH + 7 ;
15+ pub const PT_CLEARSTEP : :: c_int = PT_FIRSTMACH + 8 ;
You can’t perform that action at this time.
0 commit comments