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

{ Program to demonstrate the GetPid, GetPPid function. }

Uses BaseUnix;

begin
  Writeln ('Process Id = ',fpgetpid,' Parent process Id = ',fpgetppid);
end.