diff options
author | Jason Evans <jasone@canonware.com> | 2016-04-14 09:12:33 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2016-04-14 09:12:33 (GMT) |
commit | a15841cc7d7c60b2c72c091d8048223789f5c4e0 (patch) | |
tree | 9404a05c87064401b0744e372eaa8f3515cc7171 | |
parent | b2c0d6322d2307458ae2b28545f8a5c9903d7ef5 (diff) | |
download | jemalloc-a15841cc7d7c60b2c72c091d8048223789f5c4e0.zip jemalloc-a15841cc7d7c60b2c72c091d8048223789f5c4e0.tar.gz jemalloc-a15841cc7d7c60b2c72c091d8048223789f5c4e0.tar.bz2 |
Fix a compilation error.
Fix a compilation error that occurs if Valgrind is not enabled. This
regression was caused by b2c0d6322d2307458ae2b28545f8a5c9903d7ef5 (Add
witness, a simple online locking validator.).
-rw-r--r-- | include/jemalloc/internal/valgrind.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/jemalloc/internal/valgrind.h b/include/jemalloc/internal/valgrind.h index 7c6a62f..2667bf5 100644 --- a/include/jemalloc/internal/valgrind.h +++ b/include/jemalloc/internal/valgrind.h @@ -83,8 +83,8 @@ #define JEMALLOC_VALGRIND_MAKE_MEM_NOACCESS(ptr, usize) do {} while (0) #define JEMALLOC_VALGRIND_MAKE_MEM_UNDEFINED(ptr, usize) do {} while (0) #define JEMALLOC_VALGRIND_MAKE_MEM_DEFINED(ptr, usize) do {} while (0) -#define JEMALLOC_VALGRIND_MALLOC(cond, ptr, usize, zero) do {} while (0) -#define JEMALLOC_VALGRIND_REALLOC(maybe_moved, ptr, usize, \ +#define JEMALLOC_VALGRIND_MALLOC(cond, tsd, ptr, usize, zero) do {} while (0) +#define JEMALLOC_VALGRIND_REALLOC(maybe_moved, tsd, ptr, usize, \ ptr_maybe_null, old_ptr, old_usize, old_rzsize, old_ptr_maybe_null, \ zero) do {} while (0) #define JEMALLOC_VALGRIND_FREE(ptr, rzsize) do {} while (0) |