Merge remote-tracking branch 'qemu/master'
[qemu/ar7.git] / coroutine-win32.c
blobd4c40d3ad8707cf6aee1400e84fde05b4f7d5325
1 /*
2 * Win32 coroutine initialization code
4 * Copyright (c) 2011 Kevin Wolf <kwolf@redhat.com>
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
25 #include "qemu-common.h"
26 #include "block/coroutine_int.h"
28 typedef struct
30 Coroutine base;
32 LPVOID fiber;
33 CoroutineAction action;
34 } CoroutineWin32;
36 static __thread CoroutineWin32 leader;
37 static __thread Coroutine *current;
39 CoroutineAction qemu_coroutine_switch(Coroutine *from_, Coroutine *to_,
40 CoroutineAction action)
42 CoroutineWin32 *from = DO_UPCAST(CoroutineWin32, base, from_);
43 CoroutineWin32 *to = DO_UPCAST(CoroutineWin32, base, to_);
45 g_assert(current == from_);
46 current = to_;
48 to->action = action;
49 SwitchToFiber(to->fiber);
50 return from->action;
53 static void CALLBACK coroutine_trampoline(void *co_)
55 Coroutine *co = co_;
57 while (true) {
58 co->entry(co->entry_arg);
59 qemu_coroutine_switch(co, co->caller, COROUTINE_TERMINATE);
63 Coroutine *qemu_coroutine_new(void)
65 const size_t stack_size = 1 << 20;
66 CoroutineWin32 *co;
68 co = g_malloc0(sizeof(*co));
69 co->fiber = CreateFiber(stack_size, coroutine_trampoline, &co->base);
70 return &co->base;
73 void qemu_coroutine_delete(Coroutine *co_)
75 CoroutineWin32 *co = DO_UPCAST(CoroutineWin32, base, co_);
77 DeleteFiber(co->fiber);
78 g_free(co);
81 Coroutine *qemu_coroutine_self(void)
83 if (!current) {
84 current = &leader.base;
85 leader.fiber = ConvertThreadToFiber(NULL);
87 return current;
90 bool qemu_in_coroutine(void)
92 return current && current->caller;