Kaydet (Commit) 9a812c01 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Let's disable these too then for consistency

Change-Id: I17d17b1cad83a55f9a2c0db80e272c419529b45a
üst 0ecf20cd
...@@ -65,7 +65,7 @@ oslMutex SAL_CALL osl_createMutex() ...@@ -65,7 +65,7 @@ oslMutex SAL_CALL osl_createMutex()
pthread_mutexattr_destroy(&aMutexAttr); pthread_mutexattr_destroy(&aMutexAttr);
SAL_INFO("sal.osl.mutex", "osl_createMutex(): " << pMutex); // SAL_INFO("sal.osl.mutex", "osl_createMutex(): " << pMutex);
return pMutex; return pMutex;
} }
...@@ -74,7 +74,7 @@ void SAL_CALL osl_destroyMutex(oslMutexImpl *pMutex) ...@@ -74,7 +74,7 @@ void SAL_CALL osl_destroyMutex(oslMutexImpl *pMutex)
{ {
SAL_WARN_IF(!pMutex, "sal.osl.mutex", "null pMutex"); SAL_WARN_IF(!pMutex, "sal.osl.mutex", "null pMutex");
SAL_INFO("sal.osl.mutex", "osl_destroyMutex(" << pMutex << ")"); // SAL_INFO("sal.osl.mutex", "osl_destroyMutex(" << pMutex << ")");
if ( pMutex != 0 ) if ( pMutex != 0 )
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment