位置:首页 > 其他技术 > Unix/Linux系统调用 > getuid()函数 Unix/Linux

getuid()函数 Unix/Linux

getuid, geteuid - 获取用户标识

内容简介

#include <unistd.h> 
#include <sys/types.h>

uid_t getuid(void); 
uid_t geteuid(void);

描述

getuid() 返回当前进程的真实用户ID。

geteuid() 返回当前进程的有效用户ID。

错误

这些函数总是成功的。

遵循于

POSIX.1-2001, 4.3BSD.

历史

In Unix V6 the getuid() call returned (euid << 8) + uid. Unix V7 introduced separate callsgetuid() and geteuid().

另请参阅