diff options
author | Jason Evans <jasone@canonware.com> | 2016-12-03 16:47:36 -0800 |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2016-12-03 16:56:19 -0800 |
commit | 145f3cd17340ae3a1af8aad3bdce8ddcc626ec67 (patch) | |
tree | 7a41417f6247e9f3094f1c2b1a2f10d40d98cdf6 /src/util.c | |
parent | e1b2970d28d26454de9345e1510c6bae257e82e4 (diff) | |
download | jemalloc-rc-4.4.0.tar.gz |
Add --disable-syscall.rc-4.4.0
This resolves #517.
Diffstat (limited to 'src/util.c')
-rwxr-xr-x | src/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -49,7 +49,7 @@ static void wrtmessage(void *cbopaque, const char *s) { -#if defined(JEMALLOC_HAVE_SYSCALL) && defined(SYS_write) +#if defined(JEMALLOC_USE_SYSCALL) && defined(SYS_write) /* * Use syscall(2) rather than write(2) when possible in order to avoid * the possibility of memory allocation within libc. This is necessary |