Function GetUid : Longint;
Get the real user ID of the currently running process.
None.
GetEUid, getuid (2)
Program Example17; { Program to demonstrate the GetUid and GetEUid functions. } Uses linux; begin writeln ('User Id = ',getuid,' Effective user Id = ',geteuid); end.