summaryrefslogtreecommitdiff
path: root/proc
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1995-01-19 07:01:10 +0000
committerRoland McGrath <roland@gnu.org>1995-01-19 07:01:10 +0000
commitcd3c1f4175422aebd266235917f45f288be6fa00 (patch)
tree1749249de0639ebd6b9887510158490432c2b0b1 /proc
parent3739ab2af373ced46461b77f9d71ee843ab1c2a2 (diff)
(S_proc_child): Use nowait_msg_proc_newids instead of nowait_proc_newids.
Diffstat (limited to 'proc')
-rw-r--r--proc/mgt.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/proc/mgt.c b/proc/mgt.c
index aea9b024..0111d325 100644
--- a/proc/mgt.c
+++ b/proc/mgt.c
@@ -73,7 +73,7 @@ check_uid (struct proc *p, uid_t uid)
{
int i;
for (i = 0; i < p->p_id->i_nuids; i++)
- if (p->p_id->i_uids[i] == uid || p->p_id\->i_uids[i] == 0)
+ if (p->p_id->i_uids[i] == uid || p->p_id->i_uids[i] == 0)
return 1;
return 0;
}
@@ -182,9 +182,9 @@ S_proc_child (struct proc *parentp,
it for us. */
}
else if (childp->p_msgport != MACH_PORT_NULL)
- nowait_proc_newids (childp->p_msgport, childp->p_task,
- childp->p_parent->p_pid, childp->p_pgrp->pg_pgid,
- !childp->p_pgrp->pg_orphcnt);
+ nowait_msg_proc_newids (childp->p_msgport, childp->p_task,
+ childp->p_parent->p_pid, childp->p_pgrp->pg_pgid,
+ !childp->p_pgrp->pg_orphcnt);
childp->p_parentset = 1;
return 0;
}