Disable FpSigTimedWait also for BeOS

git-svn-id: trunk@37259 -
This commit is contained in:
pierre 2017-09-20 08:49:12 +00:00
parent e7fe9ddfbc
commit 98be7e67f1

View File

@ -41,7 +41,7 @@ const
function FPSigProcMask(how:cint;const nset : sigset;var oset : sigset):cint;cdecl; external clib name 'sigprocmask';
Function FpSigPending (var nset : sigset): cInt; external clib name 'sigpending';
Function FpSigSuspend (constref sigmask : TSigSet): cInt; external clib name 'sigsuspend';
{$if not defined(darwin) and not defined(haiku)}
{$if not defined(darwin) and not defined(haiku) and not defined(beos)}
Function FpSigTimedWait (Constref sigset : TSigSet; info : Psiginfo; timeout:Ptimespec): cInt; cdecl; external clib name 'sigtimedwait';
{$endif}
Function FpUmask (cmask : TMode): TMode; cdecl; external clib name 'umask';
@ -175,7 +175,7 @@ const
function FpReaddir (dirp : pdir) : pdirent;cdecl; external clib name 'readdir'+suffix64bit;
function FpClosedir (dirp : pdir): cint; cdecl; external clib name 'closedir'{$ifdef aix}+suffix64bit{$endif};
function FpSigaction (sig: cint;var act : sigactionrec; var oact : sigactionrec): cint; cdecl; external clib name 'sigaction';
{$if not defined(darwin) and not defined(haiku)}
{$if not defined(darwin) and not defined(haiku) and not defined(beos)}
Function FpSigTimedWait (Const sigset : TSigSet; info : Psiginfo; var timeout:Ttimespec): cInt; cdecl; external clib name 'sigtimedwait';
{$endif}
function FpTime (tloc:ptime_t): time_t; cdecl; external clib name 'time';