diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-04-30 22:49:16 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-05-01 00:53:14 +0200 |
commit | f70ae550ebbfaec629abaacff037d2798aa4b677 (patch) | |
tree | 236488ec70e75235393df7830df0794351558e47 /sal | |
parent | d564a5b8a933e8a3c5bcc46a215d12f36cb4f916 (diff) |
sal: disable some over-eager SAL_INFO
These call malloc so often that valgrind forgets where the things i'm
looking for were freed, because the address has already been re-used.
Change-Id: I8e1a0f739a774972d3afe750250ee79262c79b85
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/unx/mutex.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sal/osl/unx/mutex.cxx b/sal/osl/unx/mutex.cxx index 0f5f751d79c4..d82207828b50 100644 --- a/sal/osl/unx/mutex.cxx +++ b/sal/osl/unx/mutex.cxx @@ -96,7 +96,7 @@ 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 << ")"); +// SAL_INFO("sal.osl.mutex", "osl_acquireMutex(" << pMutex << ")"); if ( pMutex != 0 ) { @@ -129,7 +129,7 @@ sal_Bool SAL_CALL osl_tryToAcquireMutex(oslMutexImpl *pMutex) result = true; } - SAL_INFO("sal.osl.mutex", "osl_tryToAcquireMutex(" << pMutex << "): " << (result ? "YES" : "NO")); +// SAL_INFO("sal.osl.mutex", "osl_tryToAcquireMutex(" << pMutex << "): " << (result ? "YES" : "NO")); return result; } @@ -138,7 +138,7 @@ 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 << ")"); +// SAL_INFO("sal.osl.mutex", "osl_releaseMutex(" << pMutex << ")"); if ( pMutex ) { |