[Linux manuál]

getgid, getegid: získat skupinovou identitu

Originální popis anglicky: getgid, getegid - get group identity

Návod, kniha: Linux Programmer's Manual

STRUČNĚ

#include <unistd.h>
 
#include <sys/types.h>
 
gid_t getgid(void);
 
gid_t getegid(void);

POPIS / INSTRUKCE

getgid returns the real group ID of the current process.
 
getegid returns the effective group ID of the current process.
 
The real ID corresponds to the ID of the calling process. The effective ID corresponds to the set ID bit on the file being executed.

CHYBY / ERRORY

These functions are always successful.

ODPOVÍDAJÍCÍ

POSIX, BSD 4.3

SOUVISEJÍCÍ

setgid(2), setregid(2)
1993-07-23 Linux 0.99.11