include <sys/types.h> include <unistd.h> include <limits.h>
char *getlogin (void)
Attention: Do not use the getlogin subroutine in a multithreaded environment. To access the thread-safe version of this subroutines, see the getlogin_r subroutine.
Attention: The getlogin subroutine returns a pointer to an area that may be overwritten by successive calls.
The getlogin subroutine returns a pointer to the login name in the /etc/utmp file. You can use the getlogin subroutine with the getpwnam subroutine to locate the correct password file entry when the same user ID is shared by several login names.
If the getlogin subroutine cannot find the login name in the /etc/utmp file, it returns the process LOGNAME environment variable. If the getlogin subroutine is called within a process that is not attached to a terminal, it returns the value of the LOGNAME environment variable. If the LOGNAME environment variable does not exist, a null pointer is returned.
The return value can point to static data whose content is overwritten by each call. If the login name is not found, the getlogin subroutine returns a null pointer.
If the getlogin function is unsuccessful, it returns one or more of the following error codes:
/etc/utmp | Contains a record of users logged into the system. |
This subroutine is part of Base Operating System (BOS) Runtime.
The getgrent, getgrgid, getgrnam, putgrent, setgrent, or endgrent subroutine, getlogin_r subroutine, getpwent, getpwuid, setpwent, or endpwent subroutine, getpwnam subroutine.
List of Security and Auditing Subroutines, Subroutines Overview in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.