Home | History | Annotate | Download | only in common

Lines Matching defs:BENCH

75 /* Maximum time we'll wait for a single bench run */
123 printf("BENCH: %5.1f %5.1f %5.1f, %s\n",
157 #define BENCH(stmnt) BENCH_COUNT(stmnt,DEFAULT_COUNT)
180 BENCH(getpid());
181 BENCH(pthread_self());
182 BENCH(pthread_getspecific(key));
183 BENCH(pthread_once(&once, _dummy_init));
186 BENCH(pthread_mutex_lock(&mutex); pthread_mutex_unlock(&mutex));
189 BENCH(pthread_mutex_lock(&errorcheck_mutex); pthread_mutex_unlock(&errorcheck_mutex));
192 BENCH(pthread_mutex_lock(&recursive_mutex); pthread_mutex_unlock(&recursive_mutex));
199 BENCH(sem_getvalue(&semaphore,&dummy));
200 BENCH(sem_wait(&semaphore); sem_post(&semaphore));