1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2006-2007 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * Author: Alexander Larsson <alexl@redhat.com>
25 #include "gasynchelper.h"
29 * SECTION:gasynchelper
30 * @short_description: Asynchronous Helper Functions
32 * @see_also: #GAsyncResult
34 * Provides helper functions for asynchronous operations.
40 _g_win32_overlap_wait_result (HANDLE hfile,
43 GCancellable *cancellable)
46 gboolean result = FALSE;
49 pollfd[0].fd = (gint)overlap->hEvent;
50 pollfd[0].events = G_IO_IN;
53 if (g_cancellable_make_pollfd (cancellable, &pollfd[1]))
57 npoll = g_poll (pollfd, num, -1);
59 /* error out, should never happen */
62 if (g_cancellable_is_cancelled (cancellable))
64 /* CancelIO only cancels pending operations issued by the
65 * current thread and since we're doing only sync operations,
67 /* CancelIoEx is only Vista+. Since we have only one overlap
68 * operaton on this thread, we can just use: */
69 result = CancelIo (hfile);
70 g_warn_if_fail (result);
73 result = GetOverlappedResult (overlap->hEvent, overlap, transferred, FALSE);
74 if (result == FALSE &&
75 GetLastError () == ERROR_IO_INCOMPLETE &&
76 !g_cancellable_is_cancelled (cancellable))
81 g_cancellable_release_fd (cancellable);