[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) March 11, 2021
Generated by manServer 1.08 from 9b14e4f2-8518-4076-8c5e-3e5c410ce729 using man macros.