am d917b20b: Merge "Change name of rwlock benchmark."
				
					
				
			* commit 'd917b20b613fd51e5f1056c8648fe8769ae8161e': Change name of rwlock benchmark.
This commit is contained in:
		@@ -121,8 +121,8 @@ void BM_pthread_mutex_lock_RECURSIVE::Run(int iters) {
 | 
				
			|||||||
  StopBenchmarkTiming();
 | 
					  StopBenchmarkTiming();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
BENCHMARK_NO_ARG(BM_pthread_rw_lock_read);
 | 
					BENCHMARK_NO_ARG(BM_pthread_rwlock_read);
 | 
				
			||||||
void BM_pthread_rw_lock_read::Run(int iters) {
 | 
					void BM_pthread_rwlock_read::Run(int iters) {
 | 
				
			||||||
  StopBenchmarkTiming();
 | 
					  StopBenchmarkTiming();
 | 
				
			||||||
  pthread_rwlock_t lock;
 | 
					  pthread_rwlock_t lock;
 | 
				
			||||||
  pthread_rwlock_init(&lock, NULL);
 | 
					  pthread_rwlock_init(&lock, NULL);
 | 
				
			||||||
@@ -137,8 +137,8 @@ void BM_pthread_rw_lock_read::Run(int iters) {
 | 
				
			|||||||
  pthread_rwlock_destroy(&lock);
 | 
					  pthread_rwlock_destroy(&lock);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
BENCHMARK_NO_ARG(BM_pthread_rw_lock_write);
 | 
					BENCHMARK_NO_ARG(BM_pthread_rwlock_write);
 | 
				
			||||||
void BM_pthread_rw_lock_write::Run(int iters) {
 | 
					void BM_pthread_rwlock_write::Run(int iters) {
 | 
				
			||||||
  StopBenchmarkTiming();
 | 
					  StopBenchmarkTiming();
 | 
				
			||||||
  pthread_rwlock_t lock;
 | 
					  pthread_rwlock_t lock;
 | 
				
			||||||
  pthread_rwlock_init(&lock, NULL);
 | 
					  pthread_rwlock_init(&lock, NULL);
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user