diff options
| author | David Xu <davidxu@FreeBSD.org> | 2002-10-28 07:37:06 +0000 | 
|---|---|---|
| committer | David Xu <davidxu@FreeBSD.org> | 2002-10-28 07:37:06 +0000 | 
| commit | 72465621ff8d2577348ae7aebe685569a588e8ac (patch) | |
| tree | 7af4cb438f09b16504733ca41e7454baa359a2b5 /sys/kern/kern_thread.c | |
| parent | 9a96729c64314fe64d4681d6c27cd84cfdd70592 (diff) | |
Notes
Diffstat (limited to 'sys/kern/kern_thread.c')
| -rw-r--r-- | sys/kern/kern_thread.c | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/kern/kern_thread.c b/sys/kern/kern_thread.c index 2b4ad4a19e21..eb6db57f04d4 100644 --- a/sys/kern/kern_thread.c +++ b/sys/kern/kern_thread.c @@ -455,10 +455,6 @@ kse_create(struct thread *td, struct kse_create_args *uap)  		bcopy(&ke->ke_startcopy, &newke->ke_startcopy,  		      RANGEOF(struct kse, ke_startcopy, ke_endcopy));  #endif -		PROC_LOCK(p); -		if (SIGPENDING(p)) -			newke->ke_flags |= KEF_ASTPENDING; -		PROC_UNLOCK(p);  		/* For the first call this may not have been set */  		if (td->td_standin == NULL) {  			td->td_standin = thread_alloc(); @@ -469,6 +465,8 @@ kse_create(struct thread *td, struct kse_create_args *uap)  		else  			newkg = kg;  		kse_link(newke, newkg); +		if (p->p_sflag & PS_NEEDSIGCHK) +			newke->ke_flags |= KEF_ASTPENDING;  		newke->ke_mailbox = uap->mbx;  		newke->ke_upcall = mbx.km_func;  		bcopy(&mbx.km_stack, &newke->ke_stack, sizeof(stack_t));  | 
