support PTRACE_GETSIGINFO and PTRACE_SETSIGINFO

refs #422
This commit is contained in:
Tomoki Shirasawa
2015-03-03 09:54:57 +09:00
parent 1d2f5d9893
commit 8caeba7cba
4 changed files with 96 additions and 6 deletions

View File

@@ -1969,6 +1969,12 @@ void destroy_process(struct process *proc)
if (proc->ptrace_debugreg) {
kfree(proc->ptrace_debugreg);
}
if (proc->ptrace_recvsig) {
kfree(proc->ptrace_recvsig);
}
if (proc->ptrace_sendsig) {
kfree(proc->ptrace_sendsig);
}
ihk_mc_free_pages(proc, KERNEL_STACK_NR_PAGES);
}