Changeset 81692 in vbox for trunk/src/VBox/Devices/USB
- Timestamp:
- Nov 6, 2019 1:00:13 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 134452
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/USB/DevOHCI.cpp
r81591 r81692 6154 6154 ohciR3DoReset(pDevIns, pThis, pThisCC, OHCI_USB_RESET, false /* don't reset devices */); 6155 6155 6156 # ifdef VBOX_WITH_STATISTICS6156 # ifdef VBOX_WITH_STATISTICS 6157 6157 /* 6158 6158 * Register statistics. 6159 6159 */ 6160 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatCanceledIsocUrbs, STAMTYPE_COUNTER, " /Devices/OHCI/CanceledIsocUrbs", STAMUNIT_OCCURENCES,"Detected canceled isochronous URBs.");6161 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatCanceledGenUrbs, STAMTYPE_COUNTER, " /Devices/OHCI/CanceledGenUrbs", STAMUNIT_OCCURENCES,"Detected canceled general URBs.");6162 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatDroppedUrbs, STAMTYPE_COUNTER, " /Devices/OHCI/DroppedUrbs", STAMUNIT_OCCURENCES,"Dropped URBs (endpoint halted, or URB canceled).");6163 # endif6160 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatCanceledIsocUrbs, STAMTYPE_COUNTER, "CanceledIsocUrbs", STAMUNIT_OCCURENCES, "Detected canceled isochronous URBs."); 6161 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatCanceledGenUrbs, STAMTYPE_COUNTER, "CanceledGenUrbs", STAMUNIT_OCCURENCES, "Detected canceled general URBs."); 6162 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatDroppedUrbs, STAMTYPE_COUNTER, "DroppedUrbs", STAMUNIT_OCCURENCES, "Dropped URBs (endpoint halted, or URB canceled)."); 6163 # endif 6164 6164 6165 6165 /* … … 6168 6168 PDMDevHlpDBGFInfoRegister(pDevIns, "ohci", "OHCI control registers.", ohciR3InfoRegs); 6169 6169 6170 # if 0/*def DEBUG_bird*/6170 # if 0/*def DEBUG_bird*/ 6171 6171 // g_fLogInterruptEPs = true; 6172 6172 g_fLogControlEPs = true; 6173 6173 g_fLogBulkEPs = true; 6174 # endif6174 # endif 6175 6175 6176 6176 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.