Lines Matching refs:continue_at
31 * continue_at(cl, next_function, workqueue);
36 * continue_at() also, critically, requires a 'return' immediately following the
61 * continue_at(cl, complete_some_read, system_wq);
75 * closure - _always_ use continue_at(). Doing so consistently will help
94 * continue_at(cl, NULL, NULL);
97 * returns up the C stack. continue_at() with non null fn is better thought of
126 * continue_at() and closure_return() clear it for you, if you're doing
303 * continue_at - jump to another function with barrier
309 * This is because after calling continue_at() you no longer have a ref on @cl,
311 * has a ref on its own closure which continue_at() drops.
315 #define continue_at(_cl, _fn, _wq) \
329 #define closure_return(_cl) continue_at((_cl), NULL, NULL)