mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 23:19:29 +02:00
Disable FpSigTimedWait also for BeOS
git-svn-id: trunk@37259 -
This commit is contained in:
parent
e7fe9ddfbc
commit
98be7e67f1
@ -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';
|
||||
|
Loading…
Reference in New Issue
Block a user