FpGetgid
Return real group ID
Declaration
Source position: bunxh.inc line 50
function FpGetgid : TGid;
Description
FpGetgid returns the real group ID of the currently running process.
Errors
None.
See also
| Name | Description |
|---|---|
| FpGetEGid | Return effective group ID |
| FpGetEUid | Return effective user ID |
| FpGetPid | Return current process ID |
| FpGetPPid | Return parent process ID |
| FpGetUid | Return current user ID |
| FpSetGid | Set the current group ID |
| fpSetUID | Set the current user ID |
Example
Program Example18;
{ Program to demonstrate the GetGid and GetEGid functions. }
Uses BaseUnix;
begin
writeln ('Group Id = ',fpgetgid,' Effective group Id = ',fpgetegid);
end.