blob: 4c9b2d3fcd5b03673b7d19eee4b80638ab5f1f5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
/***********************************************************************/
/* */
/* Objective Caml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
/* Copyright 1996 Institut National de Recherche en Informatique et */
/* Automatique. Distributed only by permission. */
/* */
/***********************************************************************/
/* $Id$ */
#include <mlvalues.h>
#include <alloc.h>
#ifdef HAS_GETGROUPS
#include <sys/types.h>
#include <sys/param.h>
#include "unixsupport.h"
value unix_getgroups() /* ML */
{
gid_t gidset[NGROUPS];
int n;
value res;
int i;
n = getgroups(NGROUPS, gidset);
if (n == -1) uerror("getgroups", Nothing);
res = alloc_tuple(n);
for (i = 0; i < n; i++)
Field(res, i) = Val_int(gidset[i]);
return res;
}
#else
value unix_getgroups() { invalid_argument("getgroups not implemented"); }
#endif
|