1GETGID(2) Linux Programmer's Manual GETGID(2)
2
3
4
6 getgid, getegid - get group identity
7
9 #include <unistd.h>
10 #include <sys/types.h>
11
12 gid_t getgid(void);
13 gid_t getegid(void);
14
16 getgid() returns the real group ID of the calling process.
17
18 getegid() returns the effective group ID of the calling process.
19
21 These functions are always successful.
22
24 POSIX.1-2001, 4.3BSD.
25
27 The original Linux getgid() and getegid() system calls supported only
28 16-bit group IDs. Subsequently, Linux 2.4 added getgid32() and gete‐
29 gid32(), supporting 32-bit IDs. The glibc getgid() and getegid() wrap‐
30 per functions transparently deal with the variations across kernel ver‐
31 sions.
32
34 getresgid(2), setgid(2), setregid(2), credentials(7)
35
37 This page is part of release 3.53 of the Linux man-pages project. A
38 description of the project, and information about reporting bugs, can
39 be found at http://www.kernel.org/doc/man-pages/.
40
41
42
43Linux 2010-11-22 GETGID(2)