- Timestamp:
- Jul 9, 2012 3:31:05 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmnetshaper.h
r42062 r42064 71 71 * @param cbTransfer Number of bytes to allocate. 72 72 */ 73 VMMR0DECL(bool) PDMR0NsAllocateBandwidth(PPDMNSFILTER pFilter, uint32_t cbTransfer);73 VMMR0DECL(bool) PDMR0NsAllocateBandwidth(PPDMNSFILTER pFilter, size_t cbTransfer); 74 74 75 75 /** … … 80 80 * @param cbTransfer Number of bytes to allocate. 81 81 */ 82 VMMR3DECL(bool) PDMR3NsAllocateBandwidth(PPDMNSFILTER pFilter, uint32_t cbTransfer);82 VMMR3DECL(bool) PDMR3NsAllocateBandwidth(PPDMNSFILTER pFilter, size_t cbTransfer); 83 83 84 84 /** -
trunk/include/VBox/vmm/pdmnetshaperint.h
r42062 r42064 46 46 typedef PDMNSBWGROUP *PPDMNSBWGROUP; 47 47 48 DECLINLINE(bool) pdmNsAllocateBandwidth(PPDMNSFILTER pFilter, uint32_t cbTransfer)48 DECLINLINE(bool) pdmNsAllocateBandwidth(PPDMNSFILTER pFilter, size_t cbTransfer) 49 49 { 50 50 AssertPtrReturn(pFilter, true); -
trunk/src/VBox/VMM/VMMR0/PDMNetShaperR0.cpp
r42062 r42064 38 38 * @param cbTransfer Number of bytes to allocate. 39 39 */ 40 VMMR0DECL(bool) PDMR0NsAllocateBandwidth(PPDMNSFILTER pFilter, uint32_t cbTransfer)40 VMMR0DECL(bool) PDMR0NsAllocateBandwidth(PPDMNSFILTER pFilter, size_t cbTransfer) 41 41 { 42 42 return pdmNsAllocateBandwidth(pFilter, cbTransfer); -
trunk/src/VBox/VMM/VMMR3/PDMNetShaper.cpp
r42062 r42064 337 337 } 338 338 339 VMMR3DECL(bool) PDMR3NsAllocateBandwidth(PPDMNSFILTER pFilter, uint32_t cbTransfer)339 VMMR3DECL(bool) PDMR3NsAllocateBandwidth(PPDMNSFILTER pFilter, size_t cbTransfer) 340 340 { 341 341 return pdmNsAllocateBandwidth(pFilter, cbTransfer);
Note:
See TracChangeset
for help on using the changeset viewer.