mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[FREELDR]: On ARM, don't turn on maximum, hyper, ultra-slow debugging and analysis features for the heap. This, for example, reduces FreeLoader's size by 32KB+ and speeds up boot by entire seconds, as the entire heap isn't zeroed out on startup.
[FREELDR]: May I humbly suggest you do the same on x86?! svn path=/trunk/; revision=49744
This commit is contained in:
parent
b363fcdc3b
commit
492d30fecb
1 changed files with 3 additions and 0 deletions
|
@ -407,6 +407,7 @@
|
|||
all buffers allocated are a
|
||||
multiple of this size. This
|
||||
MUST be a power of two. */
|
||||
#ifndef _M_ARM
|
||||
|
||||
#define BufDump 1 /* Define this symbol to enable the
|
||||
bpoold() function which dumps the
|
||||
|
@ -442,6 +443,8 @@
|
|||
#define BECtl 1 /* Define this symbol to enable the
|
||||
bectl() function for automatic
|
||||
pool space control. */
|
||||
#else
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
|
|
Loading…
Reference in a new issue