File tree Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,3 @@ pub const PT_GETREGS: ::c_int = PT_FIRSTMACH + 1;
9
9
pub const PT_SETREGS : :: c_int = PT_FIRSTMACH + 2 ;
10
10
pub const PT_GETFPREGS : :: c_int = PT_FIRSTMACH + 3 ;
11
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 ;
Original file line number Diff line number Diff line change
1
+ use PT_FIRSTMACH ;
2
+
1
3
pub type c_long = i64 ;
2
4
pub type c_ulong = u64 ;
5
+
6
+ pub const PT_STEP : :: c_int = PT_FIRSTMACH + 0 ;
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 PT_FIRSTMACH ;
2
+
1
3
pub type c_long = i64 ;
2
4
pub type c_ulong = u64 ;
3
5
pub 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 ;
You can’t perform that action at this time.
0 commit comments