2 * GThread coroutine initialization code
4 * Copyright (C) 2006 Anthony Liguori <anthony@codemonkey.ws>
5 * Copyright (C) 2011 Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.0 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
22 #include "qemu-common.h"
23 #include "qemu-coroutine-int.h"
29 CoroutineAction action
;
32 static GCond
*coroutine_cond
;
33 static GStaticMutex coroutine_lock
= G_STATIC_MUTEX_INIT
;
34 static GStaticPrivate coroutine_key
= G_STATIC_PRIVATE_INIT
;
36 static void __attribute__((constructor
)) coroutine_init(void)
38 if (!g_thread_supported()) {
39 #if !GLIB_CHECK_VERSION(2, 31, 0)
42 fprintf(stderr
, "glib threading failed to initialize.\n");
47 coroutine_cond
= g_cond_new();
50 static void coroutine_wait_runnable_locked(CoroutineGThread
*co
)
52 while (!co
->runnable
) {
53 g_cond_wait(coroutine_cond
, g_static_mutex_get_mutex(&coroutine_lock
));
57 static void coroutine_wait_runnable(CoroutineGThread
*co
)
59 g_static_mutex_lock(&coroutine_lock
);
60 coroutine_wait_runnable_locked(co
);
61 g_static_mutex_unlock(&coroutine_lock
);
64 static gpointer
coroutine_thread(gpointer opaque
)
66 CoroutineGThread
*co
= opaque
;
68 g_static_private_set(&coroutine_key
, co
, NULL
);
69 coroutine_wait_runnable(co
);
70 co
->base
.entry(co
->base
.entry_arg
);
71 qemu_coroutine_switch(&co
->base
, co
->base
.caller
, COROUTINE_TERMINATE
);
75 Coroutine
*qemu_coroutine_new(void)
79 co
= g_malloc0(sizeof(*co
));
80 co
->thread
= g_thread_create_full(coroutine_thread
, co
, 0, TRUE
, TRUE
,
81 G_THREAD_PRIORITY_NORMAL
, NULL
);
89 void qemu_coroutine_delete(Coroutine
*co_
)
91 CoroutineGThread
*co
= DO_UPCAST(CoroutineGThread
, base
, co_
);
93 g_thread_join(co
->thread
);
97 CoroutineAction
qemu_coroutine_switch(Coroutine
*from_
,
99 CoroutineAction action
)
101 CoroutineGThread
*from
= DO_UPCAST(CoroutineGThread
, base
, from_
);
102 CoroutineGThread
*to
= DO_UPCAST(CoroutineGThread
, base
, to_
);
104 g_static_mutex_lock(&coroutine_lock
);
105 from
->runnable
= false;
106 from
->action
= action
;
109 g_cond_broadcast(coroutine_cond
);
111 if (action
!= COROUTINE_TERMINATE
) {
112 coroutine_wait_runnable_locked(from
);
114 g_static_mutex_unlock(&coroutine_lock
);
118 Coroutine
*qemu_coroutine_self(void)
120 CoroutineGThread
*co
= g_static_private_get(&coroutine_key
);
123 co
= g_malloc0(sizeof(*co
));
125 g_static_private_set(&coroutine_key
, co
, (GDestroyNotify
)g_free
);
131 bool qemu_in_coroutine(void)
133 CoroutineGThread
*co
= g_static_private_get(&coroutine_key
);
135 return co
&& co
->base
.caller
;