From dc93db20a96e95827f4873fa04bb1e58177736df Mon Sep 17 00:00:00 2001 From: Yabin Cui Date: Tue, 17 Mar 2015 11:19:07 -0700 Subject: [PATCH] Change name of rwlock benchmark. rw_lock is not easy for me to remember, so I prefer changing it to rwlock. Change-Id: I0784acaca0c3b46c28184a77eb29ffe696f9ea07 --- benchmarks/pthread_benchmark.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/benchmarks/pthread_benchmark.cpp b/benchmarks/pthread_benchmark.cpp index 2f6572dd8..ad31e7e8c 100644 --- a/benchmarks/pthread_benchmark.cpp +++ b/benchmarks/pthread_benchmark.cpp @@ -121,8 +121,8 @@ void BM_pthread_mutex_lock_RECURSIVE::Run(int iters) { StopBenchmarkTiming(); } -BENCHMARK_NO_ARG(BM_pthread_rw_lock_read); -void BM_pthread_rw_lock_read::Run(int iters) { +BENCHMARK_NO_ARG(BM_pthread_rwlock_read); +void BM_pthread_rwlock_read::Run(int iters) { StopBenchmarkTiming(); pthread_rwlock_t lock; pthread_rwlock_init(&lock, NULL); @@ -137,8 +137,8 @@ void BM_pthread_rw_lock_read::Run(int iters) { pthread_rwlock_destroy(&lock); } -BENCHMARK_NO_ARG(BM_pthread_rw_lock_write); -void BM_pthread_rw_lock_write::Run(int iters) { +BENCHMARK_NO_ARG(BM_pthread_rwlock_write); +void BM_pthread_rwlock_write::Run(int iters) { StopBenchmarkTiming(); pthread_rwlock_t lock; pthread_rwlock_init(&lock, NULL);