summaryrefslogtreecommitdiff
path: root/fpcdocs/olinuxex/ex16.pp
blob: 1766612b1b1a01eca3a09c5b326975dcfa5680ba (plain)
1
2
3
4
5
6
7
8
9
Program Example16;

{ Program to demonstrate the GetPid, GetPPid function. }

Uses oldlinux;

begin
  Writeln ('Process Id = ',getpid,' Parent process Id = ',getppid);
end.