aboutsummaryrefslogtreecommitdiff
path: root/proc/pgrp.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1995-01-19 08:34:22 +0000
committerRoland McGrath <roland@gnu.org>1995-01-19 08:34:22 +0000
commitf820de858bfffac04855ef784a6f3233b00891e6 (patch)
tree9ae4b3bfd9ec1e57907afb7e084bcbc83460c613 /proc/pgrp.c
parent31d7e98faa9973234f739c5d640e26aa7e34e81a (diff)
downloadhurd-f820de858bfffac04855ef784a6f3233b00891e6.tar.gz
hurd-f820de858bfffac04855ef784a6f3233b00891e6.tar.bz2
hurd-f820de858bfffac04855ef784a6f3233b00891e6.zip
More of same.
Diffstat (limited to 'proc/pgrp.c')
-rw-r--r--proc/pgrp.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/proc/pgrp.c b/proc/pgrp.c
index 04818ff5..a0231c79 100644
--- a/proc/pgrp.c
+++ b/proc/pgrp.c
@@ -369,7 +369,7 @@ leave_pgrp (struct proc *p)
if (ip->p_stopped)
dosignal = 1;
if (ip->p_msgport != MACH_PORT_NULL)
- nowait_proc_newids (ip->p_msgport, ip->p_task, ip->p_parent->p_pid,
+ nowait_msg_proc_newids (ip->p_msgport, ip->p_task, ip->p_parent->p_pid,
ip->p_pid, 1);
}
if (dosignal)
@@ -404,11 +404,12 @@ join_pgrp (struct proc *p)
/* Tell all the processes that their status has changed */
for (tp = pg->pg_plist; tp; tp = tp->p_gnext)
if (tp->p_msgport != MACH_PORT_NULL)
- nowait_proc_newids (tp->p_msgport, tp->p_task, tp->p_parent->p_pid,
- pg->pg_pgid, !pg->pg_orphcnt);
+ nowait_msg_proc_newids (tp->p_msgport, tp->p_task,
+ tp->p_parent->p_pid, pg->pg_pgid,
+ !pg->pg_orphcnt);
}
else if (p->p_msgport != MACH_PORT_NULL)
/* Always notify process P, because its pgrp has changed. */
- nowait_proc_newids (p->p_msgport, p->p_task,
+ nowait_msg_proc_newids (p->p_msgport, p->p_task,
p->p_parent->p_pid, pg->pg_pgid, !pg->pg_orphcnt);
}