-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
Okay so Travis-CI is confirming the behavior I'm seeing on my local PC which is that I understand if you want to reject the patch on those grounds. I can rework it so only the option flags are being added. But the |
@bors: r+ Thanks! |
📌 Commit 12e1cd1 has been approved by |
Added all additional ptrace options. Added additional PTrace Flags. All the `PTRACE_O` are flags options values that are passed with `PTRACE_OPTION`. The `PTRACE_PEEKSIGINFO_SHARED` is used for setting/fetching signal masks when interacting with thread groups not individual threads. `SYSEMU` stuff I pulled from the kernel sources. As far as I can tell these flags haven't been added to `<sys/ptrace.h>`, which is weird because the two `SYSEMU` calls have been live on x64 since 2011. I'm starting a thread on kernel-newies about it.
☀️ Test successful - status-appveyor, travis |
Added additional PTrace Flags.
All the
PTRACE_O
are flags options values that are passed withPTRACE_OPTION
.The
PTRACE_PEEKSIGINFO_SHARED
is used for setting/fetching signal masks when interacting with thread groups not individual threads.SYSEMU
stuff I pulled from the kernel sources. As far as I can tell these flags haven't been added to<sys/ptrace.h>
, which is weird because the twoSYSEMU
calls have been live on x64 since 2011. I'm starting a thread on kernel-newies about it.