Reenable memory allocator small-object cache, disabled by mistake.

Change-Id: I006282fd3991f7ba7b8315670724c065bd71a671
Signed-off-by: Dave Barach <dave@barachs.net>
This commit is contained in:
Dave Barach
2015-12-12 10:46:46 -05:00
parent cb9cadad57
commit 63a254f37d

View File

@ -144,7 +144,7 @@ typedef struct {
/* Without vector instructions don't bother with small object cache. */
#ifdef CLIB_HAVE_VEC128
#define MHEAP_HAVE_SMALL_OBJECT_CACHE 0
#define MHEAP_HAVE_SMALL_OBJECT_CACHE 1
#else
#define MHEAP_HAVE_SMALL_OBJECT_CACHE 0
#endif