mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-04 10:16:17 +01:00
Interpret EINTR as G_IO_ERROR_AGAIN.
2000-03-17 Sebastian Wilhelmi <wilhelmi@ira.uka.de> * giounix.c (g_io_unix_write, g_io_unix_read): Interpret EINTR as G_IO_ERROR_AGAIN.
This commit is contained in:
parent
5e7134375e
commit
692ce67892
@ -1,3 +1,8 @@
|
||||
2000-03-17 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* giounix.c (g_io_unix_write, g_io_unix_read): Interpret EINTR as
|
||||
G_IO_ERROR_AGAIN.
|
||||
|
||||
2000-03-17 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Added the missing POSIX_NO_YIELD and
|
||||
|
@ -1,3 +1,8 @@
|
||||
2000-03-17 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* giounix.c (g_io_unix_write, g_io_unix_read): Interpret EINTR as
|
||||
G_IO_ERROR_AGAIN.
|
||||
|
||||
2000-03-17 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Added the missing POSIX_NO_YIELD and
|
||||
|
@ -1,3 +1,8 @@
|
||||
2000-03-17 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* giounix.c (g_io_unix_write, g_io_unix_read): Interpret EINTR as
|
||||
G_IO_ERROR_AGAIN.
|
||||
|
||||
2000-03-17 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Added the missing POSIX_NO_YIELD and
|
||||
|
@ -1,3 +1,8 @@
|
||||
2000-03-17 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* giounix.c (g_io_unix_write, g_io_unix_read): Interpret EINTR as
|
||||
G_IO_ERROR_AGAIN.
|
||||
|
||||
2000-03-17 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Added the missing POSIX_NO_YIELD and
|
||||
|
@ -1,3 +1,8 @@
|
||||
2000-03-17 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* giounix.c (g_io_unix_write, g_io_unix_read): Interpret EINTR as
|
||||
G_IO_ERROR_AGAIN.
|
||||
|
||||
2000-03-17 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Added the missing POSIX_NO_YIELD and
|
||||
|
@ -1,3 +1,8 @@
|
||||
2000-03-17 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* giounix.c (g_io_unix_write, g_io_unix_read): Interpret EINTR as
|
||||
G_IO_ERROR_AGAIN.
|
||||
|
||||
2000-03-17 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Added the missing POSIX_NO_YIELD and
|
||||
|
@ -1,3 +1,8 @@
|
||||
2000-03-17 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* giounix.c (g_io_unix_write, g_io_unix_read): Interpret EINTR as
|
||||
G_IO_ERROR_AGAIN.
|
||||
|
||||
2000-03-17 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Added the missing POSIX_NO_YIELD and
|
||||
|
@ -1,3 +1,8 @@
|
||||
2000-03-17 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* giounix.c (g_io_unix_write, g_io_unix_read): Interpret EINTR as
|
||||
G_IO_ERROR_AGAIN.
|
||||
|
||||
2000-03-17 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Added the missing POSIX_NO_YIELD and
|
||||
|
@ -166,6 +166,7 @@ g_io_unix_read (GIOChannel *channel,
|
||||
case EINVAL:
|
||||
return G_IO_ERROR_INVAL;
|
||||
case EAGAIN:
|
||||
case EINTR:
|
||||
return G_IO_ERROR_AGAIN;
|
||||
default:
|
||||
return G_IO_ERROR_UNKNOWN;
|
||||
@ -197,6 +198,7 @@ g_io_unix_write(GIOChannel *channel,
|
||||
case EINVAL:
|
||||
return G_IO_ERROR_INVAL;
|
||||
case EAGAIN:
|
||||
case EINTR:
|
||||
return G_IO_ERROR_AGAIN;
|
||||
default:
|
||||
return G_IO_ERROR_UNKNOWN;
|
||||
|
@ -166,6 +166,7 @@ g_io_unix_read (GIOChannel *channel,
|
||||
case EINVAL:
|
||||
return G_IO_ERROR_INVAL;
|
||||
case EAGAIN:
|
||||
case EINTR:
|
||||
return G_IO_ERROR_AGAIN;
|
||||
default:
|
||||
return G_IO_ERROR_UNKNOWN;
|
||||
@ -197,6 +198,7 @@ g_io_unix_write(GIOChannel *channel,
|
||||
case EINVAL:
|
||||
return G_IO_ERROR_INVAL;
|
||||
case EAGAIN:
|
||||
case EINTR:
|
||||
return G_IO_ERROR_AGAIN;
|
||||
default:
|
||||
return G_IO_ERROR_UNKNOWN;
|
||||
|
Loading…
Reference in New Issue
Block a user