Changeset 99775 in vbox for trunk/src/VBox/Runtime/r3/posix
- Timestamp:
- May 12, 2023 12:21:58 PM (22 months ago)
- svn:sync-xref-src-repo-rev:
- 157370
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/rtmempage-exec-mmap-heap-posix.cpp
r98103 r99775 210 210 * executable or not. 211 211 */ 212 int RTHeapPageInit(PRTHEAPPAGE pHeap, bool fExec)212 static int RTHeapPageInit(PRTHEAPPAGE pHeap, bool fExec) 213 213 { 214 214 int rc = RTCritSectInitEx(&pHeap->CritSect, … … 236 236 * @param pHeap The page heap to delete. 237 237 */ 238 int RTHeapPageDelete(PRTHEAPPAGE pHeap)238 static int RTHeapPageDelete(PRTHEAPPAGE pHeap) 239 239 { 240 240 NOREF(pHeap); … … 504 504 * @param ppv Where to return the pointer to the pages. 505 505 */ 506 int RTHeapPageAlloc(PRTHEAPPAGE pHeap, size_t cPages, const char *pszTag, uint32_t fFlags, void **ppv)506 static int RTHeapPageAlloc(PRTHEAPPAGE pHeap, size_t cPages, const char *pszTag, uint32_t fFlags, void **ppv) 507 507 { 508 508 /* … … 557 557 * @param cPages The number of pages that was allocated. 558 558 */ 559 int RTHeapPageFree(PRTHEAPPAGE pHeap, void *pv, size_t cPages)559 static int RTHeapPageFree(PRTHEAPPAGE pHeap, void *pv, size_t cPages) 560 560 { 561 561 /*
Note:
See TracChangeset
for help on using the changeset viewer.