xref: /freebsd/sys/kern/kern_exit.c (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
1 /*
2  * Copyright (c) 1982, 1986, 1989, 1991, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  * (c) UNIX System Laboratories, Inc.
5  * All or some portions of this file are derived from material licensed
6  * to the University of California by American Telephone and Telegraph
7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8  * the permission of UNIX System Laboratories, Inc.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *	This product includes software developed by the University of
21  *	California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  *	@(#)kern_exit.c	8.7 (Berkeley) 2/12/94
39  * $FreeBSD$
40  */
41 
42 #include "opt_compat.h"
43 #include "opt_ktrace.h"
44 
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/sysproto.h>
48 #include <sys/kernel.h>
49 #include <sys/malloc.h>
50 #include <sys/lock.h>
51 #include <sys/mutex.h>
52 #include <sys/proc.h>
53 #include <sys/pioctl.h>
54 #include <sys/tty.h>
55 #include <sys/wait.h>
56 #include <sys/vnode.h>
57 #include <sys/resourcevar.h>
58 #include <sys/signalvar.h>
59 #include <sys/sx.h>
60 #include <sys/ptrace.h>
61 #include <sys/acct.h>		/* for acct_process() function prototype */
62 #include <sys/filedesc.h>
63 #include <sys/shm.h>
64 #include <sys/sem.h>
65 #include <sys/aio.h>
66 #include <sys/jail.h>
67 
68 #include <vm/vm.h>
69 #include <vm/vm_param.h>
70 #include <vm/pmap.h>
71 #include <vm/vm_map.h>
72 #include <vm/vm_zone.h>
73 #include <sys/user.h>
74 
75 /* Required to be non-static for SysVR4 emulator */
76 MALLOC_DEFINE(M_ZOMBIE, "zombie", "zombie proc status");
77 
78 static MALLOC_DEFINE(M_ATEXIT, "atexit", "atexit callback");
79 
80 static int wait1 __P((struct proc *, struct wait_args *, int));
81 
82 /*
83  * callout list for things to do at exit time
84  */
85 struct exitlist {
86 	exitlist_fn function;
87 	TAILQ_ENTRY(exitlist) next;
88 };
89 
90 TAILQ_HEAD(exit_list_head, exitlist);
91 static struct exit_list_head exit_list = TAILQ_HEAD_INITIALIZER(exit_list);
92 
93 /*
94  * exit --
95  *	Death of process.
96  */
97 void
98 sys_exit(p, uap)
99 	struct proc *p;
100 	struct sys_exit_args /* {
101 		int	rval;
102 	} */ *uap;
103 {
104 
105 	exit1(p, W_EXITCODE(uap->rval, 0));
106 	/* NOTREACHED */
107 }
108 
109 /*
110  * Exit: deallocate address space and other resources, change proc state
111  * to zombie, and unlink proc from allproc and parent's lists.  Save exit
112  * status and rusage for wait().  Check for child processes and orphan them.
113  */
114 void
115 exit1(p, rv)
116 	register struct proc *p;
117 	int rv;
118 {
119 	register struct proc *q, *nq;
120 	register struct vmspace *vm;
121 	struct exitlist *ep;
122 
123 	GIANT_REQUIRED;
124 
125 	if (p->p_pid == 1) {
126 		printf("init died (signal %d, exit %d)\n",
127 		    WTERMSIG(rv), WEXITSTATUS(rv));
128 		panic("Going nowhere without my init!");
129 	}
130 
131 	aio_proc_rundown(p);
132 
133 	/* are we a task leader? */
134 	PROC_LOCK(p);
135 	if(p == p->p_leader) {
136 		q = p->p_peers;
137 		while (q != NULL) {
138 			PROC_LOCK(q);
139 			psignal(q, SIGKILL);
140 			PROC_UNLOCK(q);
141 			q = q->p_peers;
142 		}
143 		while (p->p_peers)
144 			msleep((caddr_t)p, &p->p_mtx, PWAIT, "exit1", 0);
145 	}
146 	PROC_UNLOCK(p);
147 
148 #ifdef PGINPROF
149 	vmsizmon();
150 #endif
151 	STOPEVENT(p, S_EXIT, rv);
152 	wakeup(&p->p_stype);	/* Wakeup anyone in procfs' PIOCWAIT */
153 
154 	/*
155 	 * Check if any loadable modules need anything done at process exit.
156 	 * e.g. SYSV IPC stuff
157 	 * XXX what if one of these generates an error?
158 	 */
159 	TAILQ_FOREACH(ep, &exit_list, next)
160 		(*ep->function)(p);
161 
162 	stopprofclock(p);
163 
164 	MALLOC(p->p_ru, struct rusage *, sizeof(struct rusage),
165 		M_ZOMBIE, M_WAITOK);
166 	/*
167 	 * If parent is waiting for us to exit or exec,
168 	 * P_PPWAIT is set; we will wakeup the parent below.
169 	 */
170 	PROC_LOCK(p);
171 	p->p_flag &= ~(P_TRACED | P_PPWAIT);
172 	p->p_flag |= P_WEXIT;
173 	SIGEMPTYSET(p->p_siglist);
174 	PROC_UNLOCK(p);
175 	if (timevalisset(&p->p_realtimer.it_value))
176 		callout_stop(&p->p_itcallout);
177 
178 	/*
179 	 * Reset any sigio structures pointing to us as a result of
180 	 * F_SETOWN with our pid.
181 	 */
182 	funsetownlst(&p->p_sigiolst);
183 
184 	/*
185 	 * Close open files and release open-file table.
186 	 * This may block!
187 	 */
188 	fdfree(p);
189 
190 	/*
191 	 * Remove ourself from our leader's peer list and wake our leader.
192 	 */
193 	PROC_LOCK(p->p_leader);
194 	if(p->p_leader->p_peers) {
195 		q = p->p_leader;
196 		while(q->p_peers != p)
197 			q = q->p_peers;
198 		q->p_peers = p->p_peers;
199 		wakeup((caddr_t)p->p_leader);
200 	}
201 	PROC_UNLOCK(p->p_leader);
202 
203 	/*
204 	 * XXX Shutdown SYSV semaphores
205 	 */
206 	semexit(p);
207 
208 	/* The next two chunks should probably be moved to vmspace_exit. */
209 	vm = p->p_vmspace;
210 	/*
211 	 * Release user portion of address space.
212 	 * This releases references to vnodes,
213 	 * which could cause I/O if the file has been unlinked.
214 	 * Need to do this early enough that we can still sleep.
215 	 * Can't free the entire vmspace as the kernel stack
216 	 * may be mapped within that space also.
217 	 */
218 	if (vm->vm_refcnt == 1) {
219 		if (vm->vm_shm)
220 			shmexit(p);
221 		pmap_remove_pages(vmspace_pmap(vm), VM_MIN_ADDRESS,
222 		    VM_MAXUSER_ADDRESS);
223 		(void) vm_map_remove(&vm->vm_map, VM_MIN_ADDRESS,
224 		    VM_MAXUSER_ADDRESS);
225 	}
226 
227 	PROC_LOCK(p);
228 	if (SESS_LEADER(p)) {
229 		register struct session *sp = p->p_session;
230 
231 		PROC_UNLOCK(p);
232 		if (sp->s_ttyvp) {
233 			/*
234 			 * Controlling process.
235 			 * Signal foreground pgrp,
236 			 * drain controlling terminal
237 			 * and revoke access to controlling terminal.
238 			 */
239 			if (sp->s_ttyp && (sp->s_ttyp->t_session == sp)) {
240 				if (sp->s_ttyp->t_pgrp)
241 					pgsignal(sp->s_ttyp->t_pgrp, SIGHUP, 1);
242 				(void) ttywait(sp->s_ttyp);
243 				/*
244 				 * The tty could have been revoked
245 				 * if we blocked.
246 				 */
247 				if (sp->s_ttyvp)
248 					VOP_REVOKE(sp->s_ttyvp, REVOKEALL);
249 			}
250 			if (sp->s_ttyvp)
251 				vrele(sp->s_ttyvp);
252 			sp->s_ttyvp = NULL;
253 			/*
254 			 * s_ttyp is not zero'd; we use this to indicate
255 			 * that the session once had a controlling terminal.
256 			 * (for logging and informational purposes)
257 			 */
258 		}
259 		sp->s_leader = NULL;
260 	} else
261 		PROC_UNLOCK(p);
262 	fixjobc(p, p->p_pgrp, 0);
263 	(void)acct_process(p);
264 #ifdef KTRACE
265 	/*
266 	 * release trace file
267 	 */
268 	p->p_traceflag = 0;	/* don't trace the vrele() */
269 	if (p->p_tracep)
270 		vrele(p->p_tracep);
271 #endif
272 	/*
273 	 * Remove proc from allproc queue and pidhash chain.
274 	 * Place onto zombproc.  Unlink from parent's child list.
275 	 */
276 	sx_xlock(&allproc_lock);
277 	LIST_REMOVE(p, p_list);
278 	LIST_INSERT_HEAD(&zombproc, p, p_list);
279 	LIST_REMOVE(p, p_hash);
280 	sx_xunlock(&allproc_lock);
281 
282 	sx_xlock(&proctree_lock);
283 	q = LIST_FIRST(&p->p_children);
284 	if (q != NULL)		/* only need this if any child is S_ZOMB */
285 		wakeup((caddr_t) initproc);
286 	for (; q != NULL; q = nq) {
287 		nq = LIST_NEXT(q, p_sibling);
288 		PROC_LOCK(q);
289 		proc_reparent(q, initproc);
290 		q->p_sigparent = SIGCHLD;
291 		/*
292 		 * Traced processes are killed
293 		 * since their existence means someone is screwing up.
294 		 */
295 		if (q->p_flag & P_TRACED) {
296 			q->p_flag &= ~P_TRACED;
297 			psignal(q, SIGKILL);
298 		}
299 		PROC_UNLOCK(q);
300 	}
301 
302 	/*
303 	 * Save exit status and final rusage info, adding in child rusage
304 	 * info and self times.
305 	 */
306 	p->p_xstat = rv;
307 	*p->p_ru = p->p_stats->p_ru;
308 	mtx_lock_spin(&sched_lock);
309 	calcru(p, &p->p_ru->ru_utime, &p->p_ru->ru_stime, NULL);
310 	mtx_unlock_spin(&sched_lock);
311 	ruadd(p->p_ru, &p->p_stats->p_cru);
312 
313 	/*
314 	 * Pretend that an mi_switch() to the next process occurs now.  We
315 	 * must set `switchtime' directly since we will call cpu_switch()
316 	 * directly.  Set it now so that the rest of the exit time gets
317 	 * counted somewhere if possible.
318 	 */
319 	mtx_lock_spin(&sched_lock);
320 	microuptime(PCPU_PTR(switchtime));
321 	PCPU_SET(switchticks, ticks);
322 	mtx_unlock_spin(&sched_lock);
323 
324 	/*
325 	 * notify interested parties of our demise.
326 	 */
327 	PROC_LOCK(p);
328 	KNOTE(&p->p_klist, NOTE_EXIT);
329 
330 	/*
331 	 * Notify parent that we're gone.  If parent has the PS_NOCLDWAIT
332 	 * flag set, notify process 1 instead (and hope it will handle
333 	 * this situation).
334 	 */
335 	if (p->p_pptr->p_procsig->ps_flag & PS_NOCLDWAIT) {
336 		struct proc *pp = p->p_pptr;
337 		proc_reparent(p, initproc);
338 		/*
339 		 * If this was the last child of our parent, notify
340 		 * parent, so in case he was wait(2)ing, he will
341 		 * continue.
342 		 */
343 		if (LIST_EMPTY(&pp->p_children))
344 			wakeup((caddr_t)pp);
345 	}
346 
347 	PROC_LOCK(p->p_pptr);
348 	if (p->p_sigparent && p->p_pptr != initproc)
349 	        psignal(p->p_pptr, p->p_sigparent);
350 	else
351 	        psignal(p->p_pptr, SIGCHLD);
352 	PROC_UNLOCK(p->p_pptr);
353 
354 	/*
355 	 * If this is a kthread, then wakeup anyone waiting for it to exit.
356 	 */
357 	if (p->p_flag & P_KTHREAD)
358 		wakeup((caddr_t)p);
359 	PROC_UNLOCK(p);
360 	sx_xunlock(&proctree_lock);
361 
362 	/*
363 	 * Clear curproc after we've done all operations
364 	 * that could block, and before tearing down the rest
365 	 * of the process state that might be used from clock, etc.
366 	 * Also, can't clear curproc while we're still runnable,
367 	 * as we're not on a run queue (we are current, just not
368 	 * a proper proc any longer!).
369 	 *
370 	 * Other substructures are freed from wait().
371 	 */
372 	mtx_assert(&Giant, MA_OWNED);
373 	if (--p->p_limit->p_refcnt == 0) {
374 		FREE(p->p_limit, M_SUBPROC);
375 		p->p_limit = NULL;
376 	}
377 
378 	/*
379 	 * Finally, call machine-dependent code to release the remaining
380 	 * resources including address space, the kernel stack and pcb.
381 	 * The address space is released by "vmspace_free(p->p_vmspace)";
382 	 * This is machine-dependent, as we may have to change stacks
383 	 * or ensure that the current one isn't reallocated before we
384 	 * finish.  cpu_exit will end with a call to cpu_switch(), finishing
385 	 * our execution (pun intended).
386 	 */
387 	cpu_exit(p);
388 }
389 
390 #ifdef COMPAT_43
391 int
392 owait(p, uap)
393 	struct proc *p;
394 	register struct owait_args /* {
395 		int     dummy;
396 	} */ *uap;
397 {
398 	struct wait_args w;
399 
400 	w.options = 0;
401 	w.rusage = NULL;
402 	w.pid = WAIT_ANY;
403 	w.status = NULL;
404 	return (wait1(p, &w, 1));
405 }
406 #endif /* COMPAT_43 */
407 
408 int
409 wait4(p, uap)
410 	struct proc *p;
411 	struct wait_args *uap;
412 {
413 
414 	return (wait1(p, uap, 0));
415 }
416 
417 static int
418 wait1(q, uap, compat)
419 	register struct proc *q;
420 	register struct wait_args /* {
421 		int pid;
422 		int *status;
423 		int options;
424 		struct rusage *rusage;
425 	} */ *uap;
426 	int compat;
427 {
428 	register int nfound;
429 	register struct proc *p, *t;
430 	int status, error;
431 
432 	if (uap->pid == 0)
433 		uap->pid = -q->p_pgid;
434 	if (uap->options &~ (WUNTRACED|WNOHANG|WLINUXCLONE))
435 		return (EINVAL);
436 loop:
437 	nfound = 0;
438 	sx_slock(&proctree_lock);
439 	LIST_FOREACH(p, &q->p_children, p_sibling) {
440 		if (uap->pid != WAIT_ANY &&
441 		    p->p_pid != uap->pid && p->p_pgid != -uap->pid)
442 			continue;
443 
444 		/*
445 		 * This special case handles a kthread spawned by linux_clone
446 		 * (see linux_misc.c).  The linux_wait4 and linux_waitpid
447 		 * functions need to be able to distinguish between waiting
448 		 * on a process and waiting on a thread.  It is a thread if
449 		 * p_sigparent is not SIGCHLD, and the WLINUXCLONE option
450 		 * signifies we want to wait for threads and not processes.
451 		 */
452 		PROC_LOCK(p);
453 		if ((p->p_sigparent != SIGCHLD) ^
454 		    ((uap->options & WLINUXCLONE) != 0)) {
455 			PROC_UNLOCK(p);
456 			continue;
457 		}
458 
459 		nfound++;
460 		mtx_lock_spin(&sched_lock);
461 		if (p->p_stat == SZOMB) {
462 			/* charge childs scheduling cpu usage to parent */
463 			if (curproc->p_pid != 1) {
464 				curproc->p_estcpu =
465 				    ESTCPULIM(curproc->p_estcpu + p->p_estcpu);
466 			}
467 
468 			mtx_unlock_spin(&sched_lock);
469 			PROC_UNLOCK(p);
470 			sx_sunlock(&proctree_lock);
471 
472 			q->p_retval[0] = p->p_pid;
473 #ifdef COMPAT_43
474 			if (compat)
475 				q->p_retval[1] = p->p_xstat;
476 			else
477 #endif
478 			if (uap->status) {
479 				status = p->p_xstat;	/* convert to int */
480 				if ((error = copyout((caddr_t)&status,
481 				    (caddr_t)uap->status, sizeof(status))))
482 					return (error);
483 			}
484 			if (uap->rusage && (error = copyout((caddr_t)p->p_ru,
485 			    (caddr_t)uap->rusage, sizeof (struct rusage))))
486 				return (error);
487 			/*
488 			 * If we got the child via a ptrace 'attach',
489 			 * we need to give it back to the old parent.
490 			 */
491 			sx_xlock(&proctree_lock);
492 			if (p->p_oppid) {
493 				if ((t = pfind(p->p_oppid)) != NULL) {
494 					PROC_LOCK(p);
495 					p->p_oppid = 0;
496 					proc_reparent(p, t);
497 					PROC_UNLOCK(p);
498 					psignal(t, SIGCHLD);
499 					wakeup((caddr_t)t);
500 					PROC_UNLOCK(t);
501 					sx_xunlock(&proctree_lock);
502 					return (0);
503 				}
504 			}
505 			sx_xunlock(&proctree_lock);
506 			PROC_LOCK(p);
507 			p->p_xstat = 0;
508 			PROC_UNLOCK(p);
509 			ruadd(&q->p_stats->p_cru, p->p_ru);
510 			FREE(p->p_ru, M_ZOMBIE);
511 			p->p_ru = NULL;
512 
513 			/*
514 			 * Decrement the count of procs running with this uid.
515 			 */
516 			(void)chgproccnt(p->p_ucred->cr_ruidinfo, -1, 0);
517 
518 			/*
519 			 * Release reference to text vnode
520 			 */
521 			if (p->p_textvp)
522 				vrele(p->p_textvp);
523 
524 			/*
525 			 * Finally finished with old proc entry.
526 			 * Unlink it from its process group and free it.
527 			 */
528 			leavepgrp(p);
529 
530 			sx_xlock(&allproc_lock);
531 			LIST_REMOVE(p, p_list);	/* off zombproc */
532 			sx_xunlock(&allproc_lock);
533 
534 			sx_xlock(&proctree_lock);
535 			LIST_REMOVE(p, p_sibling);
536 			sx_xunlock(&proctree_lock);
537 
538 			/*
539 			 * Free up credentials.
540 			 */
541 			crfree(p->p_ucred);
542 			p->p_ucred = NULL;
543 
544 			/*
545 			 * Remove unused arguments
546 			 */
547 			if (p->p_args && --p->p_args->ar_ref == 0)
548 				FREE(p->p_args, M_PARGS);
549 
550 			if (--p->p_procsig->ps_refcnt == 0) {
551 				if (p->p_sigacts != &p->p_addr->u_sigacts)
552 					FREE(p->p_sigacts, M_SUBPROC);
553 			        FREE(p->p_procsig, M_SUBPROC);
554 				p->p_procsig = NULL;
555 			}
556 
557 			/*
558 			 * Give machine-dependent layer a chance
559 			 * to free anything that cpu_exit couldn't
560 			 * release while still running in process context.
561 			 */
562 			cpu_wait(p);
563 			mtx_destroy(&p->p_mtx);
564 			zfree(proc_zone, p);
565 			nprocs--;
566 			return (0);
567 		}
568 		if (p->p_stat == SSTOP && (p->p_flag & P_WAITED) == 0 &&
569 		    (p->p_flag & P_TRACED || uap->options & WUNTRACED)) {
570 			mtx_unlock_spin(&sched_lock);
571 			p->p_flag |= P_WAITED;
572 			PROC_UNLOCK(p);
573 			sx_sunlock(&proctree_lock);
574 			q->p_retval[0] = p->p_pid;
575 #ifdef COMPAT_43
576 			if (compat) {
577 				q->p_retval[1] = W_STOPCODE(p->p_xstat);
578 				error = 0;
579 			} else
580 #endif
581 			if (uap->status) {
582 				status = W_STOPCODE(p->p_xstat);
583 				error = copyout((caddr_t)&status,
584 					(caddr_t)uap->status, sizeof(status));
585 			} else
586 				error = 0;
587 			return (error);
588 		}
589 		mtx_unlock_spin(&sched_lock);
590 		PROC_UNLOCK(p);
591 	}
592 	sx_sunlock(&proctree_lock);
593 	if (nfound == 0)
594 		return (ECHILD);
595 	if (uap->options & WNOHANG) {
596 		q->p_retval[0] = 0;
597 		return (0);
598 	}
599 	if ((error = tsleep((caddr_t)q, PWAIT | PCATCH, "wait", 0)))
600 		return (error);
601 	goto loop;
602 }
603 
604 /*
605  * Make process 'parent' the new parent of process 'child'.
606  * Must be called with an exclusive hold of proctree lock.
607  */
608 void
609 proc_reparent(child, parent)
610 	register struct proc *child;
611 	register struct proc *parent;
612 {
613 
614 	SX_ASSERT_XLOCKED(&proctree_lock);
615 	PROC_LOCK_ASSERT(child, MA_OWNED);
616 	if (child->p_pptr == parent)
617 		return;
618 
619 	LIST_REMOVE(child, p_sibling);
620 	LIST_INSERT_HEAD(&parent->p_children, child, p_sibling);
621 	child->p_pptr = parent;
622 }
623 
624 /*
625  * The next two functions are to handle adding/deleting items on the
626  * exit callout list
627  *
628  * at_exit():
629  * Take the arguments given and put them onto the exit callout list,
630  * However first make sure that it's not already there.
631  * returns 0 on success.
632  */
633 
634 int
635 at_exit(function)
636 	exitlist_fn function;
637 {
638 	struct exitlist *ep;
639 
640 #ifdef INVARIANTS
641 	/* Be noisy if the programmer has lost track of things */
642 	if (rm_at_exit(function))
643 		printf("WARNING: exit callout entry (%p) already present\n",
644 		    function);
645 #endif
646 	ep = malloc(sizeof(*ep), M_ATEXIT, M_NOWAIT);
647 	if (ep == NULL)
648 		return (ENOMEM);
649 	ep->function = function;
650 	TAILQ_INSERT_TAIL(&exit_list, ep, next);
651 	return (0);
652 }
653 
654 /*
655  * Scan the exit callout list for the given item and remove it.
656  * Returns the number of items removed (0 or 1)
657  */
658 int
659 rm_at_exit(function)
660 	exitlist_fn function;
661 {
662 	struct exitlist *ep;
663 
664 	TAILQ_FOREACH(ep, &exit_list, next) {
665 		if (ep->function == function) {
666 			TAILQ_REMOVE(&exit_list, ep, next);
667 			free(ep, M_ATEXIT);
668 			return(1);
669 		}
670 	}
671 	return (0);
672 }
673 
674 void check_sigacts (void)
675 {
676 	struct proc *p = curproc;
677 	struct sigacts *pss;
678 	int s;
679 
680 	PROC_LOCK(p);
681 	if (p->p_procsig->ps_refcnt == 1 &&
682 	    p->p_sigacts != &p->p_addr->u_sigacts) {
683 		pss = p->p_sigacts;
684 		s = splhigh();
685 		p->p_addr->u_sigacts = *pss;
686 		p->p_sigacts = &p->p_addr->u_sigacts;
687 		splx(s);
688 		FREE(pss, M_SUBPROC);
689 	}
690 	PROC_UNLOCK(p);
691 }
692 
693