[INTERPRETER]

* BUG: Automatically restart mkfifo() and open() system calls when executing the PIPE instruction.


git-svn-id: svn://localhost/gambas/trunk@8053 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2017-01-13 03:22:35 +00:00
parent 6950a075f0
commit f0f6dc3261
2 changed files with 47 additions and 40 deletions

View file

@ -1,23 +1,23 @@
/***************************************************************************
gbx_stream_pipe.c
gbx_stream_pipe.c
(c) 2000-2013 Benoît Minisini <gambas@users.sourceforge.net>
(c) 2000-2017 Benoît Minisini <gambas@users.sourceforge.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
***************************************************************************/
@ -43,43 +43,42 @@
static int stream_open(STREAM *stream, const char *path, int mode)
{
int fd;
int fmode;
int fd;
int fmode;
if (mkfifo(path, 0666) != 0)
RESTART_SYSCALL(mkfifo(path, 0666))
{
if (errno != EEXIST)
return TRUE;
}
fmode = 0;
fmode = 0;
switch (mode & ST_MODE)
{
case ST_READ: fmode |= O_RDONLY; break;
case ST_WRITE: fmode |= O_WRONLY; break;
case ST_READ_WRITE: fmode |= O_RDWR; break;
default: fmode |= O_RDONLY;
}
switch (mode & ST_MODE)
{
case ST_READ: fmode |= O_RDONLY; break;
case ST_WRITE: fmode |= O_WRONLY; break;
case ST_READ_WRITE: fmode |= O_RDWR; break;
default: fmode |= O_RDONLY;
}
fd = open(path, fmode);
if (fd < 0)
return TRUE;
RESTART_SYSCALL(fd = open(path, fmode))
return TRUE;
stream->direct.size = 0;
stream->direct.size = 0;
FD = fd;
return FALSE;
FD = fd;
return FALSE;
}
static int stream_close(STREAM *stream)
{
if (close(FD) < 0)
return TRUE;
if (close(FD) < 0)
return TRUE;
FD = -1;
return FALSE;
FD = -1;
return FALSE;
}
@ -99,7 +98,7 @@ static int stream_write(STREAM *stream, char *buffer, int len)
static int stream_seek(STREAM *stream, int64_t pos, int whence)
{
return TRUE;
return TRUE;
}
@ -111,7 +110,7 @@ static int stream_tell(STREAM *stream, int64_t *pos)
static int stream_flush(STREAM *stream)
{
return FALSE;
return FALSE;
}
@ -122,7 +121,7 @@ static int stream_flush(STREAM *stream)
static int stream_handle(STREAM *stream)
{
return FD;
return FD;
}

View file

@ -2,7 +2,7 @@
gb_common.h
(c) 2000-2013 Benoît Minisini <gambas@users.sourceforge.net>
(c) 2000-2017 Benoît Minisini <gambas@users.sourceforge.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@ -181,7 +181,7 @@ typedef
#define BREAKPOINT() { raise(SIGTRAP); }
#endif /* __i386__ */
#define COPYRIGHT "(c) 2000-2016 Benoît Minisini\n\n" \
#define COPYRIGHT "(c) 2000-2017 Benoît Minisini\n\n" \
"This program is free software; you can redistribute it and/or \n" \
"modify it under the terms of the GNU General Public License as \n" \
"published by the Free Software Foundation; either version 2, or \n" \
@ -194,4 +194,12 @@ typedef
#define $(_x) _x
#define RESTART_SYSCALL(_code) \
for(;;) \
{ \
errno = 0; \
if ((_code) >= 0 || (errno != EINTR)) \
break; \
} if (errno)
#endif /* __COMMON_H */