Home
last modified time | relevance | path

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

/test/dittosuite/src/
Dmultiprocessing.cpp45 barrier_execution_end_ = static_cast<pthread_barrier_t*>( in SetUpSingle()
46 mmap(nullptr, sizeof(*barrier_execution_end_), PROT_READ | PROT_WRITE, in SetUpSingle()
48 if (barrier_execution_end_ == MAP_FAILED) { in SetUpSingle()
51 pthread_barrier_init(barrier_execution_end_, &barrier_attr, instructions_.size()); in SetUpSingle()
129 pthread_barrier_wait(barrier_execution_end_); in RunSingle()
213 pthread_barrier_destroy(barrier_execution_end_); in CollectResults()
/test/dittosuite/include/ditto/
Dmultiprocessing.h45 pthread_barrier_t* barrier_execution_end_; variable