GETUID.2
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:

操作系统开发

开发平台:

C/C++

  1. GETUID(2)                 Minix Programmer's Manual                  GETUID(2)
  2. NAME
  3.      getuid, geteuid - get user identity
  4. SYNOPSIS
  5.      #include <sys/types.h>
  6.      #include <unistd.h>
  7.      uid_t getuid(void)
  8.      uid_t geteuid(void)
  9. DESCRIPTION
  10.      Getuid returns the real user ID  of  the  current  process,  geteuid  the
  11.      effective user ID.
  12.      The real user ID identifies the person who is logged in.   The  effective
  13.      user  ID  gives  the  process  additional permissions during execution of
  14.      "set-user-ID" mode processes, which use getuid  to  determine  the  real-
  15.      user-id of the process that invoked them.
  16. SEE ALSO
  17.      getgid(2), setuid(2).
  18. 4BSD                             January 7, 1986                             1