Add ptrace exit breakpoint

This will let you stop at process exit and inspect it right before the
process dies.
This commit is contained in:
jD91mZM2
2019-08-15 14:23:54 +02:00
parent 070f1fa913
commit cf0a7620df
7 changed files with 16 additions and 13 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ struct Handle {
seek: usize
}
type SysFn = Fn() -> Result<Vec<u8>> + Send + Sync;
type SysFn = dyn Fn() -> Result<Vec<u8>> + Send + Sync;
/// System information scheme
pub struct SysScheme {