Manual Reference Pages  - system_geteuid (3m_system)

NAME

system_geteuid(3f) - [M_system:QUERY] get effective UID of current process from Fortran by calling geteuid(3c) (LICENSE:PD)

CONTENTS

Synopsis
Description
Examples

SYNOPSIS

integer(kind=c_int) function system_geteuid()

DESCRIPTION

The system_geteuid(3f) function shall return the effective user ID of the calling process. The geteuid() function shall always be successful and no return value is reserved to indicate the error.

EXAMPLES

Get group ID from Fortran:

   program demo_system_geteuid
   use M_system, only : system_geteuid
   implicit none
      write(*,*)’EFFECTIVE UID=’,system_geteuid()
   end program demo_system_geteuid

Results:

 >  EFFECTIVE UID=        1000


Nemo Release 3.1 system_geteuid (3m_system) March 07, 2025
Generated by manServer 1.08 from 19220167-8936-4347-8f7d-2da891631995 using man macros.