mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -06:00
coroutines: Locks
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
f9f05dc58c
commit
b96e92470a
5 changed files with 198 additions and 1 deletions
|
@ -433,3 +433,11 @@ disable xen_platform_log(char *s) "xen platform: %s"
|
|||
disable qemu_coroutine_enter(void *from, void *to, void *opaque) "from %p to %p opaque %p"
|
||||
disable qemu_coroutine_yield(void *from, void *to) "from %p to %p"
|
||||
disable qemu_coroutine_terminate(void *co) "self %p"
|
||||
|
||||
# qemu-coroutine-lock.c
|
||||
disable qemu_co_queue_next_bh(void) ""
|
||||
disable qemu_co_queue_next(void *next) "next %p"
|
||||
disable qemu_co_mutex_lock_entry(void *mutex, void *self) "mutex %p self %p"
|
||||
disable qemu_co_mutex_lock_return(void *mutex, void *self) "mutex %p self %p"
|
||||
disable qemu_co_mutex_unlock_entry(void *mutex, void *self) "mutex %p self %p"
|
||||
disable qemu_co_mutex_unlock_return(void *mutex, void *self) "mutex %p self %p"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue