system_getlogin(3f) - [M_system:QUERY] get login name
(LICENSE:PD)
function system_getlogin() result (fname)
character(len=:),allocatable :: FNAME
The system_getlogin(3f) function returns a string containing the user
name associated by the login activity with the controlling terminal
of the current process. Otherwise, it returns a null string and sets
errno to indicate the error.
Three names associated with the current process can be determined:
o system_getpwuid(system_getuid()) returns the name associated
with the real user ID of the process.
o system_getpwuid(system_geteuid()) returns the name associated
with the effective user ID of the process
o system_getlogin() returns the name associated with the current
login activity
fname returns the login name.
Sample program:
program demo_system_getlogin
use M_system, only : system_getlogin
implicit none
character(len=:),allocatable :: name
name=system_getlogin()
write(*,'("login[",a,"]")')name
end program demo_system_getlogin
Results:
login[JSU]
John S. Urban
Public Domain
function system_getlogin() result (fname)
character(len=:),allocatable :: fname
type(c_ptr) :: username
interface
function c_getlogin() bind(c,name="getlogin") result(c_username)
import c_int, c_ptr
type(c_ptr) :: c_username
end function c_getlogin
end interface
username = c_getlogin()
if(.not.c_associated(username)) then
!x! in windows 10 subsystem running Ubunto does not work
!x!write(*,'(a)')'*system_getlogin* Error getting username. not associated'
!x!fname=c_null_char
fname=system_getpwuid(system_geteuid())
else
fname=c2f_string(username)
endif
end function system_getlogin