summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2015-05-01 11:02:17 +0300
committerTor Lillqvist <tml@collabora.com>2015-05-01 11:02:17 +0300
commit5b8acf459e4a6728ea656e7abd5dfb08ad2ae345 (patch)
tree7fadd9cb398f4e1705d9303a6e4cb23938c21867 /sal
parent9a812c0177cfb7119181bc5afd6c7d935918485e (diff)
Actually, let's just delete the now commented-out SAL_INFO lines
(It was I who added them in the first place.) Next time somebody (falsely?) suspects a problem with mutex use and really needs tracing, it's trivial to add temporary SAL_DEBUGs. Change-Id: I3db02be777a728fbf4a1d1962f0ccfa16c630f15
Diffstat (limited to 'sal')
-rw-r--r--sal/osl/unx/mutex.cxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/sal/osl/unx/mutex.cxx b/sal/osl/unx/mutex.cxx
index a50cfa08ef09..515a2edb9102 100644
--- a/sal/osl/unx/mutex.cxx
+++ b/sal/osl/unx/mutex.cxx
@@ -65,8 +65,6 @@ oslMutex SAL_CALL osl_createMutex()
pthread_mutexattr_destroy(&aMutexAttr);
-// SAL_INFO("sal.osl.mutex", "osl_createMutex(): " << pMutex);
-
return pMutex;
}
@@ -74,8 +72,6 @@ void SAL_CALL osl_destroyMutex(oslMutexImpl *pMutex)
{
SAL_WARN_IF(!pMutex, "sal.osl.mutex", "null pMutex");
-// SAL_INFO("sal.osl.mutex", "osl_destroyMutex(" << pMutex << ")");
-
if ( pMutex != 0 )
{
int nRet=0;
@@ -96,8 +92,6 @@ sal_Bool SAL_CALL osl_acquireMutex(oslMutexImpl *pMutex)
{
SAL_WARN_IF(!pMutex, "sal.osl.mutex", "null pMutex");
-// SAL_INFO("sal.osl.mutex", "osl_acquireMutex(" << pMutex << ")");
-
if ( pMutex != 0 )
{
int nRet=0;
@@ -129,8 +123,6 @@ sal_Bool SAL_CALL osl_tryToAcquireMutex(oslMutexImpl *pMutex)
result = true;
}
-// SAL_INFO("sal.osl.mutex", "osl_tryToAcquireMutex(" << pMutex << "): " << (result ? "YES" : "NO"));
-
return result;
}
@@ -138,8 +130,6 @@ sal_Bool SAL_CALL osl_releaseMutex(oslMutexImpl *pMutex)
{
SAL_WARN_IF(!pMutex, "sal.osl.mutex", "null pMutex");
-// SAL_INFO("sal.osl.mutex", "osl_releaseMutex(" << pMutex << ")");
-
if ( pMutex )
{
int nRet=0;