From e15c2497e538f1b4b4bd215067734f44949eb5cd Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Mon, 27 Feb 2006 20:20:57 +0000 Subject: [PATCH] some debug text --- src/channel.cpp | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/channel.cpp b/src/channel.cpp index d5854889..389bb23b 100755 --- a/src/channel.cpp +++ b/src/channel.cpp @@ -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 )