Function GetGid : Longint;
Get the real group ID of the currently running process.
None.
GetEGid, getgid (2)
Program Example18; { Program to demonstrate the GetGid and GetEGid functions. } Uses linux; begin writeln ('Group Id = ',getgid,' Effective group Id = ',getegid); end.