HomeSort by relevance Sort by last modified time
    Searched defs:AsyncContext (Results 1 - 3 of 3) sorted by null

  /external/qemu/
async.c 29 * An AsyncContext protects the callbacks of AIO requests and Bottom Halves
39 * To achieve the desired semantics we switch into a new AsyncContext.
40 * Callbacks must only be run if they belong to the current AsyncContext.
47 struct AsyncContext {
48 /* Consecutive number of the AsyncContext (position in the stack) */
55 struct AsyncContext *parent;
58 /* The currently active AsyncContext */
59 static struct AsyncContext *async_context = &(struct AsyncContext) { 0 };
62 * Enter a new AsyncContext. Already scheduled Bottom Halves and AIO callback
    [all...]