2
0

coroutine-win32.c 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. * Win32 coroutine initialization code
  3. *
  4. * Copyright (c) 2011 Kevin Wolf <kwolf@redhat.com>
  5. *
  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:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  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.
  23. */
  24. #include "qemu-common.h"
  25. #include "block/coroutine_int.h"
  26. typedef struct
  27. {
  28. Coroutine base;
  29. LPVOID fiber;
  30. CoroutineAction action;
  31. } CoroutineWin32;
  32. static __thread CoroutineWin32 leader;
  33. static __thread Coroutine *current;
  34. CoroutineAction qemu_coroutine_switch(Coroutine *from_, Coroutine *to_,
  35. CoroutineAction action)
  36. {
  37. CoroutineWin32 *from = DO_UPCAST(CoroutineWin32, base, from_);
  38. CoroutineWin32 *to = DO_UPCAST(CoroutineWin32, base, to_);
  39. current = to_;
  40. to->action = action;
  41. SwitchToFiber(to->fiber);
  42. return from->action;
  43. }
  44. static void CALLBACK coroutine_trampoline(void *co_)
  45. {
  46. Coroutine *co = co_;
  47. while (true) {
  48. co->entry(co->entry_arg);
  49. qemu_coroutine_switch(co, co->caller, COROUTINE_TERMINATE);
  50. }
  51. }
  52. Coroutine *qemu_coroutine_new(void)
  53. {
  54. const size_t stack_size = 1 << 20;
  55. CoroutineWin32 *co;
  56. co = g_malloc0(sizeof(*co));
  57. co->fiber = CreateFiber(stack_size, coroutine_trampoline, &co->base);
  58. return &co->base;
  59. }
  60. void qemu_coroutine_delete(Coroutine *co_)
  61. {
  62. CoroutineWin32 *co = DO_UPCAST(CoroutineWin32, base, co_);
  63. DeleteFiber(co->fiber);
  64. g_free(co);
  65. }
  66. Coroutine *qemu_coroutine_self(void)
  67. {
  68. if (!current) {
  69. current = &leader.base;
  70. leader.fiber = ConvertThreadToFiber(NULL);
  71. }
  72. return current;
  73. }
  74. bool qemu_in_coroutine(void)
  75. {
  76. return current && current->caller;
  77. }