Return real group ID.
Source position: bunxh.inc line 55
function FpGetgid: TGid; |
FpGetgid returns the real group ID of the currently running process.
None.
|
Return effective group ID. |
|
|
Return current user ID. |
|
|
Return effective user ID. |
|
|
Return current process ID. |
|
|
Return parent process ID. |
|
|
Set the current user ID. |
|
|
Set the current group ID. |
Program Example18; { Program to demonstrate the GetGid and GetEGid functions. } Uses BaseUnix; begin writeln ('Group Id = ',fpgetgid,' Effective group Id = ',fpgetegid); end.