increased debug level
svn-id: r12889
This commit is contained in:
parent
4e7850b0f1
commit
06d7b1729d
1 changed files with 2 additions and 2 deletions
|
@ -117,7 +117,7 @@ StackLock::~StackLock() {
|
||||||
void StackLock::lock() {
|
void StackLock::lock() {
|
||||||
assert(_syst);
|
assert(_syst);
|
||||||
if (_mutexName != NULL)
|
if (_mutexName != NULL)
|
||||||
debug(5, "Locking mutex %s", _mutexName);
|
debug(6, "Locking mutex %s", _mutexName);
|
||||||
|
|
||||||
_syst->lock_mutex(_mutex);
|
_syst->lock_mutex(_mutex);
|
||||||
}
|
}
|
||||||
|
@ -125,7 +125,7 @@ void StackLock::lock() {
|
||||||
void StackLock::unlock() {
|
void StackLock::unlock() {
|
||||||
assert(_syst);
|
assert(_syst);
|
||||||
if (_mutexName != NULL)
|
if (_mutexName != NULL)
|
||||||
debug(5, "Unlocking mutex %s", _mutexName);
|
debug(6, "Unlocking mutex %s", _mutexName);
|
||||||
|
|
||||||
_syst->unlock_mutex(_mutex);
|
_syst->unlock_mutex(_mutex);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue