+#define SCALABLE_MALLOC_ABORT_ON_ERROR (1 << 4)
+ // call abort() on any malloc error, such as double free or out of memory.
+#define SCALABLE_MALLOC_PURGEABLE (1 << 5)
+ // allocate objects such that they may be used with VM purgability APIs
+#define SCALABLE_MALLOC_ABORT_ON_CORRUPTION (1 << 6)
+ // call abort() on malloc errors, but not on out of memory.