Changeset 62463 in vbox for trunk/src/VBox/Devices/USB
- Timestamp:
- Jul 22, 2016 4:32:54 PM (8 years ago)
- Location:
- trunk/src/VBox/Devices/USB
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/USB/DevOHCI.cpp
r62001 r62463 106 106 #define VBOX_WITH_OHCI_PHYS_READ_CACHE 107 107 //#define VBOX_WITH_OHCI_PHYS_READ_STATS 108 108 109 109 110 /********************************************************************************************************************************* … … 1346 1347 p->ed.cMinReadsPerPage = RT_MIN(p->ed.cMinReadsPerPage, p->ed.cReadsLastPage); 1347 1348 p->ed.cMaxReadsPerPage = RT_MAX(p->ed.cMaxReadsPerPage, p->ed.cReadsLastPage);; 1348 1349 1349 1350 p->td.cMinReadsPerPage = RT_MIN(p->td.cMinReadsPerPage, p->td.cReadsLastPage); 1350 1351 p->td.cMaxReadsPerPage = RT_MAX(p->td.cMaxReadsPerPage, p->td.cReadsLastPage);; 1351 1352 1352 1353 p->all.cMinReadsPerPage = RT_MIN(p->all.cMinReadsPerPage, p->all.cReadsLastPage); 1353 1354 p->all.cMaxReadsPerPage = RT_MAX(p->all.cMaxReadsPerPage, p->all.cReadsLastPage);; -
trunk/src/VBox/Devices/USB/VUSBBufferedPipe.cpp
r59776 r62463 511 511 * Create a ring buffer which can hold twice the amount of data 512 512 * for the required latency so we can fill the buffer with new data 513 * while the old one is still being used 513 * while the old one is still being used 514 514 */ 515 515 rc = RTCircBufCreate(&pThis->pRingBufData, 2 * pThis->cbRingBufData); … … 582 582 } 583 583 584 -
trunk/src/VBox/Devices/USB/VUSBSniffer.cpp
r59686 r62463 35 35 * Defined Constants And Macros * 36 36 *********************************************************************************************************************************/ 37 37 38 38 39 /********************************************************************************************************************************* -
trunk/src/VBox/Devices/USB/VUSBSnifferUsbMon.cpp
r59700 r62463 34 34 * Defined Constants And Macros * 35 35 *********************************************************************************************************************************/ 36 36 37 37 38 /********************************************************************************************************************************* -
trunk/src/VBox/Devices/USB/VUSBSnifferVmx.cpp
r59633 r62463 34 34 * Defined Constants And Macros * 35 35 *********************************************************************************************************************************/ 36 36 37 37 38 /********************************************************************************************************************************* … … 83 84 "Dec" 84 85 }; 86 85 87 86 88 /********************************************************************************************************************************* -
trunk/src/VBox/Devices/USB/VUSBUrbPool.cpp
r59775 r62463 28 28 #include "VUSBInternal.h" 29 29 30 30 31 /********************************************************************************************************************************* 31 32 * Defined Constants And Macros * … … 37 38 /** Convert from an URB to the URB header. */ 38 39 #define VUSBURBPOOL_URB_2_URBHDR(a_pUrb) RT_FROM_MEMBER(a_pUrb, VUSBURBHDR, Urb); 40 39 41 40 42 /********************************************************************************************************************************* … … 67 69 AssertCompileSizeAlignment(VUSBURBHDR, 8); 68 70 71 69 72 /********************************************************************************************************************************* 70 73 * Static Variables * 71 74 *********************************************************************************************************************************/ 75 72 76 73 77 /********************************************************************************************************************************* -
trunk/src/VBox/Devices/USB/VUSBUrbTrace.cpp
r59738 r62463 40 40 * Global Variables * 41 41 *********************************************************************************************************************************/ 42 42 43 43 44 /*********************************************************************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.