Java
Python
Ruby
MySQL
位置:
首頁
>
其他技術
>
Unix/Linux係統調用
> getuid()函數 Unix/Linux
Unix/Linux係統調用
accept()函數 Unix/Linux
access()函數 Unix/Linux
acct()函數 Unix/Linux
add_key()函數 Unix/Linux
afs_syscall()函數 Unix/Linux
alarm()函數 Unix/Linux
alloc_hugepages()函數 Unix/Linux
arch_prctl()函數 Unix/Linux
bdflush()函數 Unix/Linux
bind()函數 Unix/Linux
brk()函數 Unix/Linux
cacheflush()函數 Unix/Linux
chdir()函數 Unix/Linux
chmod()函數 Unix/Linux
connect()函數 Unix/Linux
epoll_create()函數 Unix/Linux
execve()函數 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。
ERRORS
這些函數總是成功的。
CONFORMING TO
POSIX.1-2001, 4.3BSD.
HISTORY
In Unix V6 the
getuid
() call returned (euid << 8) + uid. Unix V7 introduced separate calls
getuid
() and
geteuid
().
SEE ALSO
setreuid (2)
setuid (2)
上一篇
下一篇