aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/user.h
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2003-05-13 20:36:02 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2003-05-13 20:36:02 +0000
commit90af4afacb3d76aba2261a2dba4a1c5f69670a19 (patch)
tree0e2ba79e40f08e96bb98756b67576ff96caccfbc /sys/sys/user.h
parent3ecb3802eeb415f4837f7e0af26c584a333018d2 (diff)
downloadsrc-90af4afacb3d76aba2261a2dba4a1c5f69670a19.tar.gz
src-90af4afacb3d76aba2261a2dba4a1c5f69670a19.zip
- Merge struct procsig with struct sigacts.
- Move struct sigacts out of the u-area and malloc() it using the M_SUBPROC malloc bucket. - Add a small sigacts_*() API for managing sigacts structures: sigacts_alloc(), sigacts_free(), sigacts_copy(), sigacts_share(), and sigacts_shared(). - Remove the p_sigignore, p_sigacts, and p_sigcatch macros. - Add a mutex to struct sigacts that protects all the members of the struct. - Add sigacts locking. - Remove Giant from nosys(), kill(), killpg(), and kern_sigaction() now that sigacts is locked. - Several in-kernel functions such as psignal(), tdsignal(), trapsignal(), and thread_stopped() are now MP safe. Reviewed by: arch@ Approved by: re (rwatson)
Notes
Notes: svn path=/head/; revision=114983
Diffstat (limited to 'sys/sys/user.h')
-rw-r--r--sys/sys/user.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/sys/user.h b/sys/sys/user.h
index 473480aed5f3..a52610f2680f 100644
--- a/sys/sys/user.h
+++ b/sys/sys/user.h
@@ -174,7 +174,6 @@ void fill_kinfo_proc(struct proc *, struct kinfo_proc *);
* when the process isn't running (esp. when swapped out).
*/
struct user {
- struct sigacts u_sigacts; /* *p_sigacts */
struct pstats u_stats; /* *p_stats */
/*
* Remaining field for a.out core dumps - not valid at other times!