fpc/docs/linuxex/ex16.pp
1998-03-25 11:26:49 +00:00

10 lines
170 B
ObjectPascal

Program Example16;
{ Program to demonstrate the GetPid, GetPPid function. }
Uses linux;
begin
Writeln ('Process Id = ',getpid,' Parent process Id = ',getppid);
end.