Kaydet (Commit) f70ae550 authored tarafından Michael Stahl's avatar Michael Stahl

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
üst d564a5b8
......@@ -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 )
{
......
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