2011-01-17 17:08:14 +01:00
|
|
|
/*
|
|
|
|
* Coroutine internals
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011 Kevin Wolf <kwolf@redhat.com>
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QEMU_COROUTINE_INT_H
|
|
|
|
#define QEMU_COROUTINE_INT_H
|
|
|
|
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/queue.h"
|
2015-09-01 15:48:02 +02:00
|
|
|
#include "qemu/coroutine.h"
|
2011-01-17 17:08:14 +01:00
|
|
|
|
2020-05-29 22:51:19 +02:00
|
|
|
#ifdef CONFIG_SAFESTACK
|
|
|
|
/* Pointer to the unsafe stack, defined by the compiler */
|
|
|
|
extern __thread void *__safestack_unsafe_stack_ptr;
|
|
|
|
#endif
|
|
|
|
|
2016-09-27 11:58:42 +02:00
|
|
|
#define COROUTINE_STACK_SIZE (1 << 20)
|
|
|
|
|
2011-01-17 17:08:14 +01:00
|
|
|
typedef enum {
|
|
|
|
COROUTINE_YIELD = 1,
|
|
|
|
COROUTINE_TERMINATE = 2,
|
2015-02-10 11:31:52 +01:00
|
|
|
COROUTINE_ENTER = 3,
|
2011-01-17 17:08:14 +01:00
|
|
|
} CoroutineAction;
|
|
|
|
|
|
|
|
struct Coroutine {
|
|
|
|
CoroutineEntry *entry;
|
|
|
|
void *entry_arg;
|
|
|
|
Coroutine *caller;
|
2017-02-13 14:52:19 +01:00
|
|
|
|
|
|
|
/* Only used when the coroutine has terminated. */
|
2012-01-13 17:34:04 +01:00
|
|
|
QSLIST_ENTRY(Coroutine) pool_next;
|
2017-02-13 14:52:19 +01:00
|
|
|
|
2016-08-11 17:51:59 +02:00
|
|
|
size_t locks_held;
|
2013-05-17 15:51:26 +02:00
|
|
|
|
2017-11-18 04:27:09 +01:00
|
|
|
/* Only used when the coroutine has yielded. */
|
|
|
|
AioContext *ctx;
|
|
|
|
|
|
|
|
/* Used to catch and abort on illegal co-routine entry.
|
|
|
|
* Will contain the name of the function that had first
|
|
|
|
* scheduled the coroutine. */
|
|
|
|
const char *scheduled;
|
|
|
|
|
|
|
|
QSIMPLEQ_ENTRY(Coroutine) co_queue_next;
|
|
|
|
|
2017-02-13 14:52:19 +01:00
|
|
|
/* Coroutines that should be woken up when we yield or terminate.
|
|
|
|
* Only used when the coroutine is running.
|
|
|
|
*/
|
2016-07-04 19:09:59 +02:00
|
|
|
QSIMPLEQ_HEAD(, Coroutine) co_queue_wakeup;
|
2017-02-13 14:52:19 +01:00
|
|
|
|
|
|
|
QSLIST_ENTRY(Coroutine) co_scheduled_next;
|
2011-01-17 17:08:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
Coroutine *qemu_coroutine_new(void);
|
|
|
|
void qemu_coroutine_delete(Coroutine *co);
|
|
|
|
CoroutineAction qemu_coroutine_switch(Coroutine *from, Coroutine *to,
|
|
|
|
CoroutineAction action);
|
|
|
|
|
|
|
|
#endif
|