Lines Matching full:barrier
300 * Report that a barrier has been initialized with a given barrier count. The
305 #define ANNOTATE_BARRIER_INIT(barrier, count, reinitialization_allowed) \
307 "ANNOTATE_BARRIER_INIT", barrier, \
310 /* Report that a barrier has been destroyed. */
311 #define ANNOTATE_BARRIER_DESTROY(barrier) \
314 barrier, 0, 0, 0)
316 /* Report that the calling thread is about to start waiting for a barrier. */
317 #define ANNOTATE_BARRIER_WAIT_BEFORE(barrier) \
320 barrier, 0, 0, 0)
322 /* Report that the calling thread has just finished waiting for a barrier. */
323 #define ANNOTATE_BARRIER_WAIT_AFTER(barrier) \
326 barrier, 0, 0, 0)