| [Overview][Constants][Types][Procedures and functions][Index] | 
Return effective user ID
Source position: bunxh.inc line 49
| function FpGeteuid: TUid; | 
FpGeteuid returns the effective user ID of the currently running process.
None.
| 
 | Return current user ID | |
| 
 | Return real group ID | |
| 
 | Return effective group ID | |
| 
 | Return current process ID | |
| 
 | Return parent process ID | |
| 
 | Set the current user ID | |
| 
 | Set the current group ID | 
Program Example17; { Program to demonstrate the GetUid and GetEUid functions. } Uses BaseUnix; begin writeln ('User Id = ',fpgetuid,' Effective user Id = ',fpgeteuid); end.