Changeset 99758 in vbox for trunk/src/VBox/Runtime/r0drv/nt
- Timestamp:
- May 11, 2023 9:37:59 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 157349
- Location:
- trunk/src/VBox/Runtime/r0drv/nt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/nt/alloc-r0drv-nt.cpp
r98103 r99758 93 93 94 94 95 /**96 * Allocates physical contiguous memory (below 4GB).97 * The allocation is page aligned and its contents is undefined.98 *99 * @returns Pointer to the memory block. This is page aligned.100 * @param pPhys Where to store the physical address.101 * @param cb The allocation size in bytes. This is always102 * rounded up to PAGE_SIZE.103 */104 95 RTR0DECL(void *) RTMemContAlloc(PRTCCPHYS pPhys, size_t cb) 105 96 { … … 143 134 144 135 145 /**146 * Frees memory allocated ysing RTMemContAlloc().147 *148 * @param pv Pointer to return from RTMemContAlloc().149 * @param cb The cb parameter passed to RTMemContAlloc().150 */151 136 RTR0DECL(void) RTMemContFree(void *pv, size_t cb) 152 137 { -
trunk/src/VBox/Runtime/r0drv/nt/timer-r0drv-nt.cpp
r98103 r99758 313 313 * Common timer callback worker for the non-omni timers. 314 314 * 315 * @returns HRTIMER_NORESTART or HRTIMER_RESTART depending on whether it's a one-shot or interval timer.316 315 * @param pTimer The timer. 317 316 */
Note:
See TracChangeset
for help on using the changeset viewer.