Skip to content
Snippets Groups Projects
Commit 08e34d7c authored by xd009642's avatar xd009642
Browse files

Arch specific ptrace commands for netbsd

parent dd8f56ed
No related branches found
No related tags found
No related merge requests found
use self::*;
pub type c_long = i64;
pub type c_ulong = u64;
pub type c_char = u8;
pub const PT_GETREGS: ::c_int = PT_FIRSTMACH + 0;
pub const PT_SETREGS: ::c_int = PT_FIRSTMACH + 1;
pub const PT_GETFPREGS: ::c_int = PT_FIRSTMACH + 2;
pub const PT_SETFPREGS: ::c_int = PT_FIRSTMACH + 3;
use self::*;
pub type c_long = i32;
pub type c_ulong = u32;
pub type c_char = u8;
pub const PT_GETREGS: ::c_int = PT_FIRSTMACH + 1;
pub const PT_SETREGS: ::c_int = PT_FIRSTMACH + 2;
pub const PT_GETFPREGS: ::c_int = PT_FIRSTMACH + 3;
pub const PT_SETFPREGS: ::c_int = PT_FIRSTMACH + 4;
use self::*;
pub type c_long = i32;
pub type c_ulong = u32;
pub type c_char = u8;
pub const PT_STEP: ::c_int = PT_FIRSTMACH + 0;
pub const PT_GETREGS: ::c_int = PT_FIRSTMACH + 1;
pub const PT_SETREGS: ::c_int = PT_FIRSTMACH + 2;
use self::*;
pub type c_long = i64;
pub type c_ulong = u64;
pub type c_char = i8;
pub const PT_STEP: ::c_int = PT_FIRSTMACH + 0;
pub const PT_GETREGS: ::c_int = PT_FIRSTMACH + 1;
pub const PT_SETREGS: ::c_int = PT_FIRSTMACH + 2;
pub const PT_GETFPREGS: ::c_int = PT_FIRSTMACH + 3;
pub const PT_SETFPREGS: ::c_int = PT_FIRSTMACH + 4;
pub const PT_GETDBREGS: ::c_int = PT_FIRSTMACH + 5;
pub const PT_SETDBREGS: ::c_int = PT_FIRSTMACH + 6;
pub const PT_SETSTEP: ::c_int = PT_FIRSTMACH + 7;
pub const PT_CLEARSTEP: ::c_int = PT_FIRSTMACH + 8;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment