mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-15 18:59:32 +02:00
* EINTR handling...
git-svn-id: trunk@12930 -
This commit is contained in:
parent
803e78ff8c
commit
fe773871d6
@ -14,8 +14,12 @@
|
||||
**********************************************************************}
|
||||
|
||||
Procedure Do_Close(Handle:thandle);
|
||||
var
|
||||
res: cint;
|
||||
Begin
|
||||
Fpclose(cint(Handle));
|
||||
repeat
|
||||
res:=Fpclose(cint(Handle));
|
||||
until (res<>-1) or (geterrno<>ESysEINTR);
|
||||
End;
|
||||
|
||||
Procedure Do_Erase(p:pchar);
|
||||
@ -210,12 +214,16 @@ Begin
|
||||
exit;
|
||||
end;
|
||||
{ real open call }
|
||||
FileRec(f).Handle:=Fpopen(p,oflags,MODE_OPEN);
|
||||
repeat
|
||||
FileRec(f).Handle:=Fpopen(p,oflags,MODE_OPEN);
|
||||
until (FileRec(f).Handle<>-1) or (geterrno<>ESysEINTR);
|
||||
if (FileRec(f).Handle<0) and
|
||||
(getErrNo=ESysEROFS) and ((OFlags and O_RDWR)<>0) then
|
||||
begin
|
||||
Oflags:=Oflags and not(O_RDWR);
|
||||
FileRec(f).Handle:=Fpopen(p,oflags,MODE_OPEN);
|
||||
repeat
|
||||
FileRec(f).Handle:=Fpopen(p,oflags,MODE_OPEN);
|
||||
until (FileRec(f).Handle<>-1) or (geterrno<>ESysEINTR);
|
||||
end;
|
||||
If Filerec(f).Handle<0 Then
|
||||
Errno2Inoutres
|
||||
|
Loading…
Reference in New Issue
Block a user