mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-04-16 12:28:48 +02:00
GCancellable: Fix build on Win32
https://bugzilla.gnome.org/show_bug.cgi?id=653522
This commit is contained in:
parent
847a8eb911
commit
2456db2c00
@ -198,16 +198,16 @@ g_cancellable_class_init (GCancellableClass *klass)
|
|||||||
static void
|
static void
|
||||||
g_cancellable_write_cancelled (GCancellable *cancellable)
|
g_cancellable_write_cancelled (GCancellable *cancellable)
|
||||||
{
|
{
|
||||||
#ifdef G_OS_WIN32
|
|
||||||
if (priv->event)
|
|
||||||
SetEvent (priv->event);
|
|
||||||
#else
|
|
||||||
gssize c;
|
gssize c;
|
||||||
GCancellablePrivate *priv;
|
GCancellablePrivate *priv;
|
||||||
const char ch = 'x';
|
const char ch = 'x';
|
||||||
|
|
||||||
priv = cancellable->priv;
|
priv = cancellable->priv;
|
||||||
|
|
||||||
|
#ifdef G_OS_WIN32
|
||||||
|
if (priv->event)
|
||||||
|
SetEvent (priv->event);
|
||||||
|
#else
|
||||||
|
|
||||||
if (priv->cancel_pipe[0] == -1)
|
if (priv->cancel_pipe[0] == -1)
|
||||||
return;
|
return;
|
||||||
@ -225,12 +225,12 @@ g_cancellable_write_cancelled (GCancellable *cancellable)
|
|||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
#endif
|
#endif /* HAVE_EVENTFD */
|
||||||
|
|
||||||
do
|
do
|
||||||
c = write (priv->cancel_pipe[1], &ch, 1);
|
c = write (priv->cancel_pipe[1], &ch, 1);
|
||||||
while (c == -1 && errno == EINTR);
|
while (c == -1 && errno == EINTR);
|
||||||
#endif
|
#endif /* G_OS_WIN32 */
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef G_OS_WIN32
|
#ifndef G_OS_WIN32
|
||||||
|
Loading…
x
Reference in New Issue
Block a user