smalloc: turn on the thread safe flag

Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
diff --git a/smalloc.c b/smalloc.c
index 3af39f3..cdc9ed8 100644
--- a/smalloc.c
+++ b/smalloc.c
@@ -13,7 +13,7 @@
 
 #include "mutex.h"
 
-#undef MP_SAFE			/* define to make thread safe */
+#define MP_SAFE			/* define to make thread safe */
 #define SMALLOC_REDZONE		/* define to detect memory corruption */
 
 #define SMALLOC_BPB	32	/* block size, bytes-per-bit in bitmap */