Changeset 107427 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jan 6, 2025 4:59:33 PM (13 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/HGCMThread.cpp
r106061 r107427 318 318 pVMM->pfnSTAMR3RegisterFU(pUVM, &m_StatPostMsgTwoPending, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, 319 319 STAMUNIT_COUNT, 320 "Times a message was appended to input queue with only one pending message.",320 "Times a message was appended to input queue with two pending messages.", 321 321 "/HGCM/%s/PostMsg2Pending", pszStatsSubDir); 322 322 pVMM->pfnSTAMR3RegisterFU(pUVM, &m_StatPostMsgThreePending, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, 323 323 STAMUNIT_COUNT, 324 "Times a message was appended to input queue with only one pending message.",324 "Times a message was appended to input queue with three pending messages.", 325 325 "/HGCM/%s/PostMsg3Pending", pszStatsSubDir); 326 326 pVMM->pfnSTAMR3RegisterFU(pUVM, &m_StatPostMsgManyPending, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, 327 327 STAMUNIT_COUNT, 328 "Times a message was appended to input queue with only one pending message.",328 "Times a message was appended to input queue with >3 pending messages.", 329 329 "/HGCM/%s/PostMsgManyPending", pszStatsSubDir); 330 330 } 331 332 331 333 332 /* Wait until the thread is ready. */ … … 440 439 if (!pPrev->m_pPrev) 441 440 STAM_REL_COUNTER_INC(&m_StatPostMsgOnePending); 442 else if (!pPrev->m_pPrev )441 else if (!pPrev->m_pPrev->m_pPrev) 443 442 STAM_REL_COUNTER_INC(&m_StatPostMsgTwoPending); 444 else if (!pPrev->m_pPrev->m_pPrev )443 else if (!pPrev->m_pPrev->m_pPrev->m_pPrev) 445 444 STAM_REL_COUNTER_INC(&m_StatPostMsgThreePending); 446 445 else
Note:
See TracChangeset
for help on using the changeset viewer.