Changeset 97900 in vbox for trunk/src/VBox/Runtime/r0drv/solaris
- Timestamp:
- Dec 29, 2022 5:42:37 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154990
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/solaris/alloc-r0drv-solaris.c
r96407 r97900 138 138 * @param fContig Whether the memory must be physically contiguous or 139 139 * not. 140 *141 140 * @returns Virtual address of allocated memory block or NULL if allocation 142 * failed.141 * failed. 143 142 */ 144 143 DECLHIDDEN(void *) rtR0SolMemAlloc(uint64_t uPhysHi, uint64_t *puPhys, size_t cb, uint64_t uAlignment, bool fContig) … … 178 177 * Frees memory allocated using rtR0SolMemAlloc(). 179 178 * 180 * @param pv The memory to free.181 * @param cb Size of the memory block179 * @param pv The memory to free. 180 * @param cb Size of the memory block 182 181 */ 183 182 DECLHIDDEN(void) rtR0SolMemFree(void *pv, size_t cb)
Note:
See TracChangeset
for help on using the changeset viewer.