mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +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
|
all buffers allocated are a
|
||||||
multiple of this size. This
|
multiple of this size. This
|
||||||
MUST be a power of two. */
|
MUST be a power of two. */
|
||||||
|
#ifndef _M_ARM
|
||||||
|
|
||||||
#define BufDump 1 /* Define this symbol to enable the
|
#define BufDump 1 /* Define this symbol to enable the
|
||||||
bpoold() function which dumps the
|
bpoold() function which dumps the
|
||||||
|
@ -442,6 +443,8 @@
|
||||||
#define BECtl 1 /* Define this symbol to enable the
|
#define BECtl 1 /* Define this symbol to enable the
|
||||||
bectl() function for automatic
|
bectl() function for automatic
|
||||||
pool space control. */
|
pool space control. */
|
||||||
|
#else
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue