summaryrefslogtreecommitdiffstats
path: root/sys/kern/subr_trap.c
diff options
context:
space:
mode:
authorjulian <julian@FreeBSD.org>2004-08-31 07:34:54 +0000
committerjulian <julian@FreeBSD.org>2004-08-31 07:34:54 +0000
commit2782d4b3fc93d70e6b2e643c22ad90982b863bf1 (patch)
tree1a975f2ac0a0702045b32ec5bdafabf3aa115857 /sys/kern/subr_trap.c
parentee753ed190029f2bb1071fa1905073ad15121ae5 (diff)
downloadFreeBSD-src-2782d4b3fc93d70e6b2e643c22ad90982b863bf1.zip
FreeBSD-src-2782d4b3fc93d70e6b2e643c22ad90982b863bf1.tar.gz
Remove an unneeded argument..
The removed argument could trivially be derived from the remaining one. That in turn should be the same as curthread, but it is possible that curthread could be expensive to derive on some syste,s so leave it as an argument. Having both proc and thread as an argumen tjust gives an opportunity for them to get out sync. MFC after: 3 days
Diffstat (limited to 'sys/kern/subr_trap.c')
-rw-r--r--sys/kern/subr_trap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/subr_trap.c b/sys/kern/subr_trap.c
index ccdaa2d..3f68103 100644
--- a/sys/kern/subr_trap.c
+++ b/sys/kern/subr_trap.c
@@ -163,7 +163,7 @@ ast(struct trapframe *framep)
td->td_frame = framep;
if ((p->p_flag & P_SA) && (td->td_mailbox == NULL))
- thread_user_enter(p, td);
+ thread_user_enter(td);
/*
* This updates the p_sflag's for the checks below in one
* "atomic" operation with turning off the astpending flag.
OpenPOWER on IntegriCloud