Home
last modified time | relevance | path

Searched refs:async_context (Results 1 – 1 of 1) sorted by relevance

/external/qemu/
Dasync.c59 static struct AsyncContext *async_context = &(struct AsyncContext) { 0 }; variable
68 new->parent = async_context; in async_context_push()
69 new->id = async_context->id + 1; in async_context_push()
70 async_context = new; in async_context_push()
87 struct AsyncContext *old = async_context; in async_context_pop()
94 async_context = async_context->parent; in async_context_pop()
97 if (async_context == NULL) { in async_context_pop()
112 return async_context->id; in get_async_context_id()
133 bh->next = async_context->first_bh; in qemu_bh_new()
134 async_context->first_bh = bh; in qemu_bh_new()
[all …]