Searched defs:semaphore (Results 1 - 1 of 1) sorted by relevance

/bionic/benchmarks/
H A Dsemaphore_benchmark.cpp18 #include <semaphore.h>
26 sem_t semaphore; local
27 sem_init(&semaphore, 1, 1);
31 sem_getvalue(&semaphore, &dummy);
37 sem_t semaphore; local
38 sem_init(&semaphore, 1, 1);
41 sem_wait(&semaphore);
42 sem_post(&semaphore);
73 sem_t* semaphore = reinterpret_cast<sem_t*>(arg); local
74 while ((BM_semaphore_sem_post_running > 0) && !sem_wait(semaphore)) {
113 sem_t semaphore; member in class:SemaphoreFixture
[all...]

Completed in 240 milliseconds