summaryrefslogtreecommitdiffstats
path: root/sys/ia64/ia32/ia32_trap.c
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2006-07-27 19:50:16 +0000
committerjhb <jhb@FreeBSD.org>2006-07-27 19:50:16 +0000
commit39705fd8c65be4ed1f0d045f08156d17f4e05c5a (patch)
treed7aca78a9dc9766080ed3383eace0e02c3a80714 /sys/ia64/ia32/ia32_trap.c
parentc95747d9a12efd3e5ae1bb838e2141c8531827b3 (diff)
downloadFreeBSD-src-39705fd8c65be4ed1f0d045f08156d17f4e05c5a.zip
FreeBSD-src-39705fd8c65be4ed1f0d045f08156d17f4e05c5a.tar.gz
Add missing ptrace(2) system-call stops to various syscall()
implementations. MFC after: 1 week
Diffstat (limited to 'sys/ia64/ia32/ia32_trap.c')
-rw-r--r--sys/ia64/ia32/ia32_trap.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/ia64/ia32/ia32_trap.c b/sys/ia64/ia32/ia32_trap.c
index 29357f1..07c7d2e 100644
--- a/sys/ia64/ia32/ia32_trap.c
+++ b/sys/ia64/ia32/ia32_trap.c
@@ -36,6 +36,7 @@ __FBSDID("$FreeBSD$");
#include <sys/mutex.h>
#include <sys/pioctl.h>
#include <sys/proc.h>
+#include <sys/ptrace.h>
#include <sys/signalvar.h>
#include <sys/syscall.h>
#include <sys/sysent.h>
@@ -125,6 +126,8 @@ ia32_syscall(struct trapframe *tf)
STOPEVENT(p, S_SCE, narg);
+ PTRACESTOP_SC(p, td, S_PT_SCE);
+
error = (*callp->sy_call)(td, args64);
}
@@ -187,6 +190,8 @@ ia32_syscall(struct trapframe *tf)
* is not the case, this code will need to be revisited.
*/
STOPEVENT(p, S_SCX, code);
+
+ PTRACESTOP_SC(p, td, S_PT_SCX);
WITNESS_WARN(WARN_PANIC, NULL, "System call %s returning",
(code >= 0 && code < SYS_MAXSYSCALL) ? syscallnames[code] : "???");
OpenPOWER on IntegriCloud