From ec05778d5718a7912e506764d443a78d6a6179e3 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 5 Nov 2012 22:41:51 +0000 Subject: Converted tabs to spaces with tabconv. --- src/stable/mutex.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/stable/mutex.cpp') diff --git a/src/stable/mutex.cpp b/src/stable/mutex.cpp index 947364c..0391d7a 100644 --- a/src/stable/mutex.cpp +++ b/src/stable/mutex.cpp @@ -9,26 +9,26 @@ Bu::Mutex::Mutex() { - pthread_mutex_init( &mutex, NULL ); + pthread_mutex_init( &mutex, NULL ); } Bu::Mutex::~Mutex() { - pthread_mutex_destroy( &mutex ); + pthread_mutex_destroy( &mutex ); } int Bu::Mutex::lock() { - return pthread_mutex_lock( &mutex ); + return pthread_mutex_lock( &mutex ); } int Bu::Mutex::unlock() { - return pthread_mutex_unlock( &mutex ); + return pthread_mutex_unlock( &mutex ); } int Bu::Mutex::trylock() { - return pthread_mutex_trylock( &mutex ); + return pthread_mutex_trylock( &mutex ); } -- cgit v1.2.3