Merge branch 'ptrace-block' into 'master'

ptrace: Block on read, not on write

See merge request redox-os/syscall!47
This commit is contained in:
Jeremy Soller
2020-06-16 12:09:58 +00:00

View File

@@ -131,7 +131,6 @@ bitflags! {
const PTRACE_EVENT_MASK = 0x0000_0000_0000_0F00;
const PTRACE_FLAG_IGNORE = 0x0000_0000_0000_1000;
const PTRACE_FLAG_WAIT = 0x0000_0000_0000_2000;
const PTRACE_FLAG_MASK = 0x0000_0000_0000_F000;
}
}