some debug text

This commit is contained in:
Volker Fischer 2006-02-27 20:20:57 +00:00
parent f9e1ab348b
commit e15c2497e5

View File

@ -225,12 +225,22 @@ CChannel::CChannel ()
void CChannel::SetSockBufSize ( const int iNewBlockSize, const int iNumBlocks )
{
/* this opperation must be done with mutex */
/* this opperation must be done with mutex */
qDebug ( "before lock" );
Mutex.lock ();
SockBuf.Init ( iNewBlockSize, iNumBlocks );
qDebug ( "in lock" );
Mutex.unlock ();
qDebug ( "after lock" );
}
void CChannel::OnJittBufSizeChange ( int iNewJitBufSize )