some debug text
This commit is contained in:
parent
f9e1ab348b
commit
e15c2497e5
1 changed files with 11 additions and 1 deletions
|
@ -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 )
|
||||
|
|
Loading…
Reference in a new issue