fpc/tests/webtbs/tw14149.pp
Jonas Maebe 51616b7bd6 * enabled a bunch of tests also for aix
git-svn-id: trunk@20821 -
2012-04-11 18:04:57 +00:00

25 lines
510 B
ObjectPascal

{ %target=linux,darwin,freebsd,netbsd,openbsd,sunos,beos,haiku,aix }
Program Example59;
{ Program to demonstrate the Alarm function. }
Uses BaseUnix;
Procedure AlarmHandler(Sig : cint);cdecl;
begin
Writeln ('Got to alarm handler');
end;
begin
Writeln('Setting alarm handler');
fpSignal(SIGALRM,SignalHandler(@AlarmHandler));
Writeln ('Scheduling Alarm in 10 seconds');
fpAlarm(2);
Writeln ('Pausing');
fpPause;
if fpGetErrno<>ESysEINTR then
halt(1);
Writeln ('Pause returned');
end.