fpc/docs/olinuxex/ex16.pp
2004-10-16 13:14:03 +00:00

10 lines
173 B
ObjectPascal

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