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

25 lines
487 B
ObjectPascal

Program Example14;
{ Program to demonstrate the Fork and WaitPidfunction. }
Uses linux;
Var PID, ExitStatus : Longint;
begin
Writeln ('Spawning a child');
PID:=Fork;
If PID=0 then
begin
Writeln ('Hello From the Child !!');
Writeln ('Exiting with exit status 1 !');
Halt (1);
end
Else
begin
Writeln ('Spawned child with PID : ',PID);
WaitPid (PID,@ExitStatus,0);
Writeln ('Child exited with status : ',ExitStatus shr 8);
end;
end.