Changeset 82660 in vbox
- Timestamp:
- Jan 7, 2020 12:33:03 PM (5 years ago)
- Location:
- trunk/src/VBox/Runtime/r3/posix
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/rtmempage-exec-mmap-heap-posix.cpp
r78348 r82660 246 246 { 247 247 int rc = mlock(pv, cb); 248 # ifndef RT_OS_SOLARIS /* mlock(3C) on Solaris requires the priv_lock_memory privilege */ 248 249 AssertMsg(rc == 0, ("mlock %p LB %#zx -> %d errno=%d\n", pv, cb, rc, errno)); 250 # endif 249 251 NOREF(rc); 250 252 } -
trunk/src/VBox/Runtime/r3/posix/rtmempage-exec-mmap-posix.cpp
r78345 r82660 59 59 { 60 60 int rc = mlock(pv, cb); 61 # ifndef RT_OS_SOLARIS /* mlock(3C) on Solaris requires the priv_lock_memory privilege */ 61 62 AssertMsg(rc == 0, ("mlock %p LB %#zx -> %d errno=%d\n", pv, cb, rc, errno)); 63 # endif 62 64 NOREF(rc); 63 65 }
Note:
See TracChangeset
for help on using the changeset viewer.