[UP]


Manual Reference Pages  - system_getgid (3)

NAME

system_getgid(3f) - [M_system:QUERY] get the real group ID (GID) of current process from Fortran by calling getgid(3c) (LICENSE:PD)

CONTENTS

Synopsis
Description
Return Value
Errors
See Also
Example

SYNOPSIS

integer(kind=c_int) function system_getgid()

DESCRIPTION

The getgid() function returns the real group ID of the calling process.

RETURN VALUE

The getgid() should always be successful and no return value is reserved to indicate an error.

ERRORS

No errors are defined.

SEE ALSO

getegid(), system_geteuid(), getuid(), setegid(), seteuid(), setgid(), setregid(), setreuid(), setuid()

EXAMPLE

Get group ID from Fortran

   program demo_system_getgid
   use M_system, only : system_getgid
   implicit none
      write(*,*)’GID=’,system_getgid()
   end program demo_system_getgid


system_getgid (3) July 05, 2020
Generated by manServer 1.08 from 2ebd4eda-b792-4865-bdbf-f67241f4650f using man macros.