We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 949a27f commit fc11f3cCopy full SHA for fc11f3c
include/jemalloc/internal/util.h
@@ -41,8 +41,12 @@
41
#define MALLOC_PRINTF_BUFSIZE 4096
42
43
/* Junk fill patterns. */
44
-#define JEMALLOC_ALLOC_JUNK ((uint8_t)0xa5)
45
-#define JEMALLOC_FREE_JUNK ((uint8_t)0x5a)
+#ifndef JEMALLOC_ALLOC_JUNK
+# define JEMALLOC_ALLOC_JUNK ((uint8_t)0xa5)
46
+#endif
47
+#ifndef JEMALLOC_FREE_JUNK
48
+# define JEMALLOC_FREE_JUNK ((uint8_t)0x5a)
49
50
51
/*
52
* Wrap a cpp argument that contains commas such that it isn't broken up into
0 commit comments