Intel® Fortran Compiler XE 13.1 User and Reference Guides

GETUID

Portability Function: Returns the user ID of the calling process.

Module

USE IFPORT

result = GETUID( )

Results

The result type is INTEGER(4). The result corresponds to the user identity under which the program is running. The result is returned as follows:

Example

USE IFPORT
integer(4) istat
ISTAT = GETUID( ) 

Submit feedback on this help topic