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()) {
42 coroutine_cond
= g_cond_new();
45 static void coroutine_wait_runnable_locked(CoroutineGThread
*co
)
47 while (!co
->runnable
) {
48 g_cond_wait(coroutine_cond
, g_static_mutex_get_mutex(&coroutine_lock
));
52 static void coroutine_wait_runnable(CoroutineGThread
*co
)
54 g_static_mutex_lock(&coroutine_lock
);
55 coroutine_wait_runnable_locked(co
);
56 g_static_mutex_unlock(&coroutine_lock
);
59 static gpointer
coroutine_thread(gpointer opaque
)
61 CoroutineGThread
*co
= opaque
;
63 g_static_private_set(&coroutine_key
, co
, NULL
);
64 coroutine_wait_runnable(co
);
65 co
->base
.entry(co
->base
.entry_arg
);
66 qemu_coroutine_switch(&co
->base
, co
->base
.caller
, COROUTINE_TERMINATE
);
70 Coroutine
*qemu_coroutine_new(void)
74 co
= g_malloc0(sizeof(*co
));
75 co
->thread
= g_thread_create_full(coroutine_thread
, co
, 0, TRUE
, TRUE
,
76 G_THREAD_PRIORITY_NORMAL
, NULL
);
84 void qemu_coroutine_delete(Coroutine
*co_
)
86 CoroutineGThread
*co
= DO_UPCAST(CoroutineGThread
, base
, co_
);
88 g_thread_join(co
->thread
);
92 CoroutineAction
qemu_coroutine_switch(Coroutine
*from_
,
94 CoroutineAction action
)
96 CoroutineGThread
*from
= DO_UPCAST(CoroutineGThread
, base
, from_
);
97 CoroutineGThread
*to
= DO_UPCAST(CoroutineGThread
, base
, to_
);
99 g_static_mutex_lock(&coroutine_lock
);
100 from
->runnable
= false;
101 from
->action
= action
;
104 g_cond_broadcast(coroutine_cond
);
106 if (action
!= COROUTINE_TERMINATE
) {
107 coroutine_wait_runnable_locked(from
);
109 g_static_mutex_unlock(&coroutine_lock
);
113 Coroutine
*qemu_coroutine_self(void)
115 CoroutineGThread
*co
= g_static_private_get(&coroutine_key
);
118 co
= g_malloc0(sizeof(*co
));
120 g_static_private_set(&coroutine_key
, co
, (GDestroyNotify
)g_free
);
126 bool qemu_in_coroutine(void)
128 CoroutineGThread
*co
= g_static_private_get(&coroutine_key
);
130 return co
&& co
->base
.caller
;