Provided by: manpages-es-dev_4.18.1-1_all bug

NOMBRE

       getuid, geteuid - devuelve la identidad del usuario

BIBLIOTECA

       Biblioteca Estándar C (libc, -lc)

SINOPSIS

       #include <unistd.h>

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

DESCRIPCIÓN

       getuid() devuelve el identificador de usuario real del proceso invocante.

       geteuid() devuelve el identificador de usuario efectivo del proceso actual.

ERRORES

       Estas funciones nunca devuelven error ni modifican errno.

ESTÁNDARES

       POSIX.1-2001, POSIX.1-2008, 4.3BSD.

NOTAS

   Historia
       In  UNIX V6  the  getuid()   call returned (euid << 8) + uid.  UNIX V7 introduced separate
       calls getuid()  and geteuid().

       The original Linux getuid()  and geteuid()  system calls supported only 16-bit  user  IDs.
       Subsequently,  Linux  2.4  added  getuid32()  and geteuid32(), supporting 32-bit IDs.  The
       glibc getuid()  and geteuid()  wrapper functions transparently deal  with  the  variations
       across kernel versions.

       On  Alpha,  instead of a pair of getuid()  and geteuid()  system calls, a single getxuid()
       system call is provided, which returns a pair of  real  and  effective  UIDs.   The  glibc
       getuid()   and  geteuid()  wrapper functions transparently deal with this.  See syscall(2)
       for details regarding register mapping.

VÉASE TAMBIÉN

       getresuid(2), setreuid(2), setuid(2), credentials(7)

TRADUCCIÓN

       La traducción  al  español  de  esta  página  del  manual  fue  creada  por  Juan  Piernas
       <piernas@ditec.um.es> y Marcos Fouces <marcos@debian.org>

       Esta  traducción  es  documentación  libre;  lea  la  GNU General Public License Version 3
       ⟨https://www.gnu.org/licenses/gpl-3.0.html⟩ o posterior con respecto a las condiciones  de
       copyright.  No existe NINGUNA RESPONSABILIDAD.

       Si  encuentra  algún  error  en  la  traducción de esta página del manual, envíe un correo
       electrónico a ⟨debian-l10n-spanish@lists.debian.org⟩.