remove postsig. postsig is called by ast().

This commit is contained in:
uch 2002-05-09 12:31:19 +00:00
parent d5020bf906
commit 2ca56b0d33
1 changed files with 1 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: userret.h,v 1.2 2002/04/28 12:51:14 msaitoh Exp $ */
/* $NetBSD: userret.h,v 1.3 2002/05/09 12:31:19 uch Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -48,11 +48,6 @@
static __inline void
userret(struct proc *p)
{
int sig;
/* Take pending signals. */
while ((sig = CURSIG(p)) != 0)
postsig(sig);
curcpu()->ci_schedstate.spc_curpriority = p->p_priority = p->p_usrpri;
}