aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/subr_trap.c
diff options
context:
space:
mode:
authorRui Paulo <rpaulo@FreeBSD.org>2010-08-22 11:30:49 +0000
committerRui Paulo <rpaulo@FreeBSD.org>2010-08-22 11:30:49 +0000
commitb3d354c9ceccc7a9cc43b1abd1497170b451612c (patch)
tree107d4d14887a8e7d60eb1e72e39022ed52d858f0 /sys/kern/subr_trap.c
parent79856499bd6f3f11cd2bd6b140d36a1183cd49ad (diff)
downloadsrc-b3d354c9ceccc7a9cc43b1abd1497170b451612c.tar.gz
src-b3d354c9ceccc7a9cc43b1abd1497170b451612c.zip
Call the systrace_probe_func() when the error value.
Sponsored by: The FreeBSD Foundation
Notes
Notes: svn path=/head/; revision=211617
Diffstat (limited to 'sys/kern/subr_trap.c')
-rw-r--r--sys/kern/subr_trap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_trap.c b/sys/kern/subr_trap.c
index 5c90d956e78e..3884abf04659 100644
--- a/sys/kern/subr_trap.c
+++ b/sys/kern/subr_trap.c
@@ -312,7 +312,7 @@ syscallenter(struct thread *td, struct syscall_args *sa)
*/
if (systrace_probe_func != NULL && sa->callp->sy_entry != 0)
(*systrace_probe_func)(sa->callp->sy_entry, sa->code,
- sa->callp, sa->args);
+ sa->callp, sa->args, 0);
#endif
AUDIT_SYSCALL_ENTER(sa->code, td);
@@ -330,7 +330,7 @@ syscallenter(struct thread *td, struct syscall_args *sa)
*/
if (systrace_probe_func != NULL && sa->callp->sy_return != 0)
(*systrace_probe_func)(sa->callp->sy_return, sa->code,
- sa->callp, sa->args);
+ sa->callp, NULL, (error) ? -1 : td->td_retval[0]);
#endif
syscall_thread_exit(td, sa->callp);
CTR4(KTR_SYSC, "syscall: p=%p error=%d return %#lx %#lx",