mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 07:28:09 +02:00
39 lines
787 B
ObjectPascal
39 lines
787 B
ObjectPascal
{ %norun }
|
|
{ %target=linux,haiku }
|
|
|
|
program test;
|
|
|
|
{$mode delphi}{$H+}
|
|
|
|
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;
|
|
|
|
Begin
|
|
F := FpOpen (Fn, O_RDWR Or O_CREAT, $1B6); // $1B6 = o666
|
|
With Region Do Begin
|
|
l_type := F_RDLCK; l_whence := SEEK_SET;
|
|
l_start := 80; l_len := 1
|
|
End;
|
|
If FpFcntl (F, F_SETLK, Region) = -1 Then
|
|
begin
|
|
writeln(fpgeterrno);
|
|
WriteLn ('unable to apply readlock on 80'); // <-- Error
|
|
halt(1);
|
|
end;
|
|
FpClose (F);
|
|
End.
|