mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 23:31:49 +02:00
F_GetLk/SetLk have different values for sparc/sparc64
git-svn-id: trunk@45829 -
This commit is contained in:
parent
ed158f1e52
commit
9f60f5093d
@ -382,11 +382,20 @@ CONST
|
||||
F_SetFd = 2;
|
||||
F_GetFl = 3;
|
||||
F_SetFl = 4;
|
||||
|
||||
{$if defined(cpusparc) or defined(cpusparc64)}
|
||||
F_GetLk = 7;
|
||||
F_SetLk = 8;
|
||||
F_SetLkW = 9;
|
||||
F_SetOwn = 5;
|
||||
F_GetOwn = 6;
|
||||
{$else}
|
||||
F_GetLk = 5;
|
||||
F_SetLk = 6;
|
||||
F_SetLkW = 7;
|
||||
F_SetOwn = 8;
|
||||
F_GetOwn = 9;
|
||||
{$endif}
|
||||
|
||||
{ getrlimit/ugetrlimit resource parameter constants }
|
||||
const
|
||||
|
@ -8,9 +8,16 @@ program test;
|
||||
Uses cthreads, Classes, SysUtils, BaseUnix;
|
||||
|
||||
Const Fn = '/tmp/fpctest.lock';
|
||||
|
||||
{$if defined(cpusparc) or defined(cpusparc64)}
|
||||
F_RDLCK = 1;
|
||||
F_WRLCK = 2;
|
||||
F_UNLCK = 3;
|
||||
{$else}
|
||||
F_RDLCK = 0;
|
||||
F_WRLCK = 1;
|
||||
F_UNLCK = 2;
|
||||
{$endif}
|
||||
|
||||
Var F, I : Integer;
|
||||
Region : FLock;
|
||||
|
@ -10,9 +10,15 @@ Uses cthreads, Classes, SysUtils, BaseUnix;
|
||||
support locking
|
||||
}
|
||||
Const Fn = '/tmp/fpctest.lock';
|
||||
{$if defined(cpusparc) or defined(cpusparc64)}
|
||||
F_RDLCK = 1;
|
||||
F_WRLCK = 2;
|
||||
F_UNLCK = 3;
|
||||
{$else}
|
||||
F_RDLCK = 0;
|
||||
F_WRLCK = 1;
|
||||
F_UNLCK = 2;
|
||||
{$endif}
|
||||
|
||||
Var F, I : Integer;
|
||||
Region : FLock;
|
||||
|
Loading…
Reference in New Issue
Block a user