diff options
author | Roland McGrath <roland@gnu.org> | 1994-09-10 15:40:32 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1994-09-10 15:40:32 +0000 |
commit | 1858b54697edb0ef7414b0d3ae326a4c7d9cf53c (patch) | |
tree | eca528b40ac67d02f42a5e0cef9255138582371a /proc/mgt.c | |
parent | 2a87c7933d6523642b39b25d9770395ec4d7af90 (diff) |
Formerly mgt.c.~20~
Diffstat (limited to 'proc/mgt.c')
-rw-r--r-- | proc/mgt.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -53,8 +53,8 @@ make_ids (uid_t *uids, int nuids, uid_t *gids, int ngids) i->i_gids = malloc (sizeof (uid_t) * ngids); i->i_refcnt = 1; - bcopy (i->i_uids, uids, sizeof (uid_t) * nuids); - bcopy (i->i_gids, gids, sizeof (uid_t) * ngids); + memcpy (i->i_uids, uids, sizeof (uid_t) * nuids); + memcpy (i->i_gids, gids, sizeof (uid_t) * ngids); return i; } @@ -247,7 +247,7 @@ S_proc_reassign (struct proc *p, /* Implement proc_setowner as described in <hurd/proc.defs>. */ kern_return_t S_proc_setowner (struct proc *p, - uid_t owner) + uid_t owner) { if (! check_uid (p, owner)) return EPERM; @@ -260,9 +260,9 @@ S_proc_setowner (struct proc *p, /* Implement proc_getpids as described in <hurd/proc.defs>. */ kern_return_t S_proc_getpids (struct proc *p, - pid_t *pid, - pid_t *ppid, - int *orphaned) + pid_t *pid, + pid_t *ppid, + int *orphaned) { *pid = p->p_pid; *ppid = p->p_parent->p_pid; |