Changeset 57358 in vbox for trunk/src/VBox/Runtime/r3/alloc-ef.cpp
- Timestamp:
- Aug 14, 2015 3:16:38 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102121
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/alloc-ef.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "alloc-ef.h" 32 32 #include <iprt/mem.h> … … 55 55 56 56 57 /******************************************************************************* 58 * Defined Constants And Macros *59 ******************************************************************************* /57 /********************************************************************************************************************************* 58 * Defined Constants And Macros * 59 *********************************************************************************************************************************/ 60 60 #ifdef RTALLOC_REPLACE_MALLOC 61 61 # define RTMEM_REPLACMENT_ALIGN(a_cb) ((a_cb) >= 16 ? RT_ALIGN_Z(a_cb, 16) \ … … 64 64 65 65 66 /******************************************************************************* 67 * Global Variables *68 ******************************************************************************* /66 /********************************************************************************************************************************* 67 * Global Variables * 68 *********************************************************************************************************************************/ 69 69 #ifdef RTALLOC_EFENCE_TRACE 70 70 /** Spinlock protecting the all the block's globals. */ … … 97 97 98 98 99 /******************************************************************************* 100 * Internal Functions *101 ******************************************************************************* /99 /********************************************************************************************************************************* 100 * Internal Functions * 101 *********************************************************************************************************************************/ 102 102 #ifdef RTALLOC_REPLACE_MALLOC 103 103 static void rtMemReplaceMallocAndFriends(void);
Note:
See TracChangeset
for help on using the changeset viewer.