Lines Matching defs:barrier_abort
64 * barrier_abort() places an abortion event that cannot be undone. An abortion
68 * barrier_abort() can be called multiple times on both ends and will be a
71 * barrier_abort() and is the only wait/sync call that does not return
73 * called barrier_abort().
312 * barrier_abort() - Abort the synchronization
315 * This aborts the barrier-synchronization. If barrier_abort() was already
321 * You can wait for the other side to call barrier_abort(), too. Use
326 bool barrier_abort(Barrier *b) {
358 * This waits until the other side called barrier_abort(). This can be called
359 * regardless whether the local side already called barrier_abort() or not.