Skip to content

Added all additional ptrace options. #417

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 5, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/unix/notbsd/linux/other/b64/x86_64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,17 @@ pub const PTRACE_GETFPXREGS: ::c_uint = 18;
pub const PTRACE_SETFPXREGS: ::c_uint = 19;
pub const PTRACE_GETREGS: ::c_uint = 12;
pub const PTRACE_SETREGS: ::c_uint = 13;
pub const PTRACE_O_EXITKILL: ::c_uint = 1048576;
pub const PTRACE_O_TRACECLONE: ::c_uint = 8;
pub const PTRACE_O_TRACEEXEC: ::c_uint = 16;
pub const PTRACE_O_TRACEEXIT: ::c_uint = 64;
pub const PTRACE_O_TRACEFORK: ::c_uint = 2;
pub const PTRACE_O_TRACESYSGOOD: ::c_uint = 1;
pub const PTRACE_O_TRACEVFORK: ::c_uint = 4;
pub const PTRACE_O_TRACEVFORKDONE: ::c_uint = 32;
pub const PTRACE_O_TRACESECCOMP: ::c_uint = 128;
pub const PTRACE_O_SUSPEND_SECCOMP: ::c_uint = 2097152;
pub const PTRACE_PEEKSIGINFO_SHARED: ::c_uint = 1;

pub const SYS_gettid: ::c_long = 186;
pub const SYS_perf_event_open: ::c_long = 298;
Expand Down