minix/lib/libc/sys-minix/getgroups.c
Lionel Sambuc c3629bba0b Message type for PM_GROUPS
Change-Id: I9e3b784143dd0294a8aad27e3cc588e5b57dabfc
2014-07-28 17:05:36 +02:00

23 lines
336 B
C

/*
getgroups.c
*/
#include <sys/cdefs.h>
#include "namespace.h"
#include <lib.h>
#include <string.h>
#include <unistd.h>
int getgroups(int ngroups, gid_t *arr)
{
message m;
memset(&m, 0, sizeof(m));
m.m_lc_pm_groups.num = ngroups;
m.m_lc_pm_groups.ptr = (vir_bytes)arr;
return(_syscall(PM_PROC_NR, PM_GETGROUPS, &m));
}