X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fdevel-api%2Fthreading%2Fmutex.cpp;h=4e0cb30ea2d9aaab41d45e5c7e762488beaeb2cd;hb=2b10280985738c74efa2aa0fb956a837c69acee6;hp=fdb9cde0c8d44515bcdf39b167711d573bd6c86c;hpb=6a1344d8b5d192ea54b7f9912357a627514b0dec;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/devel-api/threading/mutex.cpp b/dali/devel-api/threading/mutex.cpp index fdb9cde..4e0cb30 100644 --- a/dali/devel-api/threading/mutex.cpp +++ b/dali/devel-api/threading/mutex.cpp @@ -39,7 +39,7 @@ Mutex::Mutex() { if( pthread_mutex_init( &mImpl->mutex, NULL ) ) { - DALI_LOG_ERROR( "Unable to initialise Mutex" ); + DALI_LOG_ERROR( "Unable to initialise Mutex\n" ); } mImpl->locked = false; } @@ -48,7 +48,7 @@ Mutex::~Mutex() { if( pthread_mutex_destroy( &mImpl->mutex ) ) { - DALI_LOG_ERROR( "Unable to destroy Mutex" ); + DALI_LOG_ERROR( "Unable to destroy Mutex\n" ); } // nothing else to do as there is no Lock/Unlock API // ScopedLock destructor will always unlock the mutex