getuid, geteuid -獲取使用者標識
內容簡介
#include <unistd.h>
#include <sys/types.h>
uid_t getuid(void);
uid_t geteuid(void);
描述
getuid() 返回當前進程的真實使用者ID。
geteuid() 返回當前進程的有效使用者ID。
ERRORS
這些函式總是成功的。
CONFORMING TO
POSIX.1-2001, 4.3BSD.
HISTORY
In Unix V6 the getuid() call returned (euid << 8) + uid. Unix V7 introduced separate callsgetuid() and geteuid().
SEE ALSO