Changeset 57358 in vbox for trunk/src/VBox/Runtime/r3/posix/rtmempage-exec-mmap-heap-posix.cpp
- Timestamp:
- Aug 14, 2015 3:16:38 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/rtmempage-exec-mmap-heap-posix.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "internal/iprt.h" 32 32 #include <iprt/mem.h> … … 51 51 52 52 53 /******************************************************************************* 54 * Defined Constants And Macros *55 ******************************************************************************* /53 /********************************************************************************************************************************* 54 * Defined Constants And Macros * 55 *********************************************************************************************************************************/ 56 56 /** Threshold at which to we switch to simply calling mmap. */ 57 57 #define RTMEMPAGEPOSIX_MMAP_THRESHOLD _128K … … 63 63 64 64 65 /******************************************************************************* 66 * Structures and Typedefs *67 ******************************************************************************* /65 /********************************************************************************************************************************* 66 * Structures and Typedefs * 67 *********************************************************************************************************************************/ 68 68 /** Pointer to a page heap block. */ 69 69 typedef struct RTHEAPPAGEBLOCK *PRTHEAPPAGEBLOCK; … … 135 135 136 136 137 /******************************************************************************* 138 * Global Variables *139 ******************************************************************************* /137 /********************************************************************************************************************************* 138 * Global Variables * 139 *********************************************************************************************************************************/ 140 140 /** Initialize once structure. */ 141 141 static RTONCE g_MemPagePosixInitOnce = RTONCE_INITIALIZER;
Note:
See TracChangeset
for help on using the changeset viewer.