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 getresgid(2), setgid(2), setregid(2), credentials(7)
28
30 This page is part of release 3.25 of the Linux man-pages project. A
31 description of the project, and information about reporting bugs, can
32 be found at http://www.kernel.org/doc/man-pages/.
33
34
35
36Linux 1993-07-23 GETGID(2)