From 2782d4b3fc93d70e6b2e643c22ad90982b863bf1 Mon Sep 17 00:00:00 2001 From: julian Date: Tue, 31 Aug 2004 07:34:54 +0000 Subject: 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 --- sys/kern/subr_trap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/kern/subr_trap.c') 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. -- cgit v1.1