Changeset 26186 in vbox for trunk/src/VBox/Main/hgcm
- Timestamp:
- Feb 3, 2010 1:07:12 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57205
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/hgcm/HGCMThread.cpp
r21878 r26186 194 194 pThread->m_fu32ThreadFlags &= ~HGCMMSG_TF_INITIALIZING; 195 195 rc = RTThreadUserSignal (ThreadSelf); 196 AssertRC 196 AssertRC(rc); 197 197 198 198 pThread->m_pfnThread (pThread->Handle (), pThread->m_pvUser); … … 300 300 /* Wait until the thread is ready. */ 301 301 rc = RTThreadUserWait (thread, 30000); 302 AssertRC 303 Assert 302 AssertRC(rc); 303 Assert(!(m_fu32ThreadFlags & HGCMMSG_TF_INITIALIZING) || RT_FAILURE(rc)); 304 304 } 305 305 else … … 484 484 485 485 /* Remove the message from the head of Queue list. */ 486 Assert 486 Assert(m_pMsgInputQueueHead->m_pPrev == NULL); 487 487 488 488 if (m_pMsgInputQueueHead->m_pNext) … … 493 493 else 494 494 { 495 Assert 495 Assert(m_pMsgInputQueueHead == m_pMsgInputQueueTail); 496 496 497 497 m_pMsgInputQueueHead = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.