This commit is contained in:
Volker Fischer 2006-03-06 17:16:54 +00:00
parent 7cf9aafcc7
commit 3389491e52

View File

@ -157,11 +157,11 @@ void CProtocol::DeleteSendMessQueue()
void CProtocol::OnTimerSendMess()
{
Mutex.lock();
{
// Mutex.lock();
// {
SendMessage();
}
Mutex.unlock();
// }
// Mutex.unlock();
}
bool CProtocol::ParseMessage ( const CVector<unsigned char>& vecbyData,
@ -170,8 +170,8 @@ bool CProtocol::ParseMessage ( const CVector<unsigned char>& vecbyData,
/*
return code: true -> ok; false -> error
*/
Mutex.lock();
{
// Mutex.lock();
// {
int iRecCounter, iRecID, iData;
unsigned int iPos;
CVector<uint8_t> vecData;
@ -250,8 +250,8 @@ for ( int i = 0; i < iNumBytes; i++ ) {
{
return false; // return error code
}
}
Mutex.unlock();
// }
// Mutex.unlock();
}
void CProtocol::CreateJitBufMes ( const int iJitBufSize )