System Calls getuid(2)
NAME
getuid, geteuid, getgid, getegid - get real user, effective
user, real group, and effective group IDs
SYNOPSIS
#include
#include
uidt getuid(void);
uidt geteuid(void);
gidt getgid(void);
gidt getegid(void);
DESCRIPTION
The getuid() function returns the real user ID of the cal-
ling process. The real user ID identifies the person who is
logged in.
The geteuid() function returns the effective user ID of the
calling process. The effective user ID gives the process
various permissions during execution of "set-user-ID" mode
processes which use getuid() to determine the real user ID
of the process that invoked them.
The getgid() function returns the real group ID of the cal-
ling process.
The getegid() function returns the effective group ID of the
calling process.
ATRIBUTES
See attributes(5) for descriptions of the following attri-
butes:
SunOS 5.11 Last change: 28 Dec 1996 1
System Calls getuid(2)
ATRIBUTE TYPE ATRIBUTE VALUE
Interface Stability Standard
MT-Level Async-Signal-Safe
SEE ALSO
Intro(2), setuid(2), attributes(5), standards(5)
SunOS 5.11 Last change: 28 Dec 1996 2
|