diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2002-04-16 17:11:34 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2002-04-16 17:11:34 +0000 |
| commit | ba626c1db26edacaf665cdfd199cfe6480c7fb9c (patch) | |
| tree | 0dbfaf0504ea8a7e7591f231c8e177a948a68da3 /sys/kern/kern_fork.c | |
| parent | 596325f15455198a20231d34cbcb59089dcdf353 (diff) | |
Notes
Diffstat (limited to 'sys/kern/kern_fork.c')
| -rw-r--r-- | sys/kern/kern_fork.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_fork.c b/sys/kern/kern_fork.c index 138caa0f08b7..8c5ccbe31577 100644 --- a/sys/kern/kern_fork.c +++ b/sys/kern/kern_fork.c @@ -538,7 +538,7 @@ again: FILEDESC_UNLOCK(p1->p_fd); } else fd = fdshare(p1); - PGRPSESS_XLOCK(); + sx_xlock(&proctree_lock); PGRP_LOCK(p1->p_pgrp); PROC_LOCK(p2); p2->p_fd = fd; @@ -573,7 +573,7 @@ again: PROC_UNLOCK(p1); PROC_UNLOCK(p2); PGRP_UNLOCK(p1->p_pgrp); - PGRPSESS_XUNLOCK(); + sx_xunlock(&proctree_lock); /* * Attach the new process to its parent. |
