summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpierre <pierre@3ad0048d-3df7-0310-abae-a5850022a9f2>2012-04-23 10:12:43 +0000
committerpierre <pierre@3ad0048d-3df7-0310-abae-a5850022a9f2>2012-04-23 10:12:43 +0000
commitf854981ee9d4ce62092913c91fa58e7157814126 (patch)
tree9fe23134e90e18afce4795dfc9a8e13090d26efb
parent91ec087aab6c64723415181f85bc40f6793abf04 (diff)
downloadfpc-f854981ee9d4ce62092913c91fa58e7157814126.tar.gz
Fix FpSigProcMask overload for OpenBSD: Warning this probably breaks compilation of unix's RTL by obsolete 2.4.4 release compiler, 2.6.0 required
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@21005 3ad0048d-3df7-0310-abae-a5850022a9f2
-rw-r--r--rtl/unix/bunxh.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/rtl/unix/bunxh.inc b/rtl/unix/bunxh.inc
index 58da90a2bb..1ccdd3bc76 100644
--- a/rtl/unix/bunxh.inc
+++ b/rtl/unix/bunxh.inc
@@ -21,7 +21,7 @@ Type TGrpArr = Array [0..0] of TGid; { C style array workarounds}
// if you are looking for macro definitions or non C template overloaded versions, they are moved to bunxovlh.inc
Function FpSigProcMask (how : cInt; nset : pSigSet; oset : pSigSet): cInt; external name 'FPC_SYSC_SIGPROCMASK';
- Function FpSigProcMask (how : cInt; Const nset : TSigSet; var oset : TSigSet): cInt; external name 'FPC_SYSC_SIGPROCMASK';
+ Function FpSigProcMask (how : cInt; constref nset : TSigSet; var oset : TSigSet): cInt; external name 'FPC_SYSC_SIGPROCMASK';
Function FpSigPending (var nset : TSigSet): cInt;
Function FpSigSuspend (Const sigmask : TSigSet): cInt;
{$ifndef FPC_SYS_SIGTIMEDWAIT_UNAVAILABLE}