mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-gtk
synced 2025-12-26 14:18:38 +00:00
emacs mode got removed with: git ls-tree HEAD -r --name-only | xargs sed -i '/Mode: C/d' Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
63 lines
2.3 KiB
C
63 lines
2.3 KiB
C
/*
|
|
Copyright (C) 2010 Red Hat, Inc.
|
|
Copyright (C) 2006 Anthony Liguori <anthony@codemonkey.ws>
|
|
Copyright (C) 2009-2010 Daniel P. Berrange <dan@berrange.com>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.0 of the License, or (at your option) any later version.
|
|
|
|
This library 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
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
#pragma once
|
|
|
|
#include <gio/gio.h>
|
|
#include "coroutine.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
typedef struct _GCoroutine GCoroutine;
|
|
|
|
struct _GCoroutine
|
|
{
|
|
struct coroutine coroutine;
|
|
guint wait_id;
|
|
guint condition_id;
|
|
};
|
|
|
|
/*
|
|
* A special GSource impl which allows us to wait on a certain
|
|
* condition to be satisfied. This is effectively a boolean test
|
|
* run on each iteration of the main loop. So whenever a file has
|
|
* new I/O, or a timer occurs, etc we'll do the check. This is
|
|
* pretty efficient compared to a normal GLib Idle func which has
|
|
* to busy wait on a timeout, since our condition is only checked
|
|
* when some other source's state changes
|
|
*/
|
|
typedef gboolean (*GConditionWaitFunc)(gpointer);
|
|
|
|
typedef void (*GSignalEmitMainFunc)(GObject *object, int signum, gpointer params);
|
|
|
|
GCoroutine* g_coroutine_self (void);
|
|
void g_coroutine_wakeup (GCoroutine *coroutine);
|
|
GIOCondition g_coroutine_socket_wait (GCoroutine *coroutine,
|
|
GSocket *sock, GIOCondition cond);
|
|
gboolean g_coroutine_condition_wait (GCoroutine *coroutine,
|
|
GConditionWaitFunc func, gpointer data);
|
|
void g_coroutine_condition_cancel(GCoroutine *coroutine);
|
|
|
|
void g_coroutine_signal_emit (gpointer instance, guint signal_id,
|
|
GQuark detail, ...);
|
|
|
|
void g_coroutine_object_notify(GObject *object, const gchar *property_name);
|
|
|
|
G_END_DECLS
|