valkey/deps/jemalloc
YoongHM 9216b96b41
Fix compilation warning in jemalloc's malloc_vsnprintf (#7789)
Change `val` to `unsigned char` before being tested.
The fix is identical to the one that's been made in upstream jemalloc.

warning is:
src/malloc_io.c: In function ‘malloc_vsnprintf’:
src/malloc_io.c:369:2: warning: case label value exceeds maximum value for type
  369 |  case '?' | 0x80:      \
      |  ^~~~
src/malloc_io.c:581:5: note: in expansion of macro ‘GET_ARG_NUMERIC’
  581 |     GET_ARG_NUMERIC(val, 'p');
      |     ^~~~~~~~~~~~~~~
2020-09-21 17:04:34 +03:00
..
bin Jemalloc upgraded to version 5.0.1. 2018-05-24 17:17:37 +02:00
build-aux Jemalloc upgraded to version 5.0.1. 2018-05-24 17:17:37 +02:00
doc Jemalloc upgraded to version 5.0.1. 2018-05-24 17:17:37 +02:00
include fix a rare active defrag edge case bug leading to stagnation 2020-05-20 16:04:42 +03:00
m4 Jemalloc upgraded to version 5.0.1. 2018-05-24 17:17:37 +02:00
msvc Jemalloc upgraded to version 5.0.1. 2018-05-24 17:17:37 +02:00
scripts Jemalloc upgraded to version 5.0.1. 2018-05-24 17:17:37 +02:00
src Fix compilation warning in jemalloc's malloc_vsnprintf (#7789) 2020-09-21 17:04:34 +03:00
test Generate configure for Jemalloc. 2018-05-24 18:21:13 +02:00
.appveyor.yml Jemalloc upgraded to version 5.0.1. 2018-05-24 17:17:37 +02:00
.autom4te.cfg Jemalloc updated to 4.0.3. 2015-10-06 16:55:37 +02:00
.gitattributes Jemalloc updated to 4.0.3. 2015-10-06 16:55:37 +02:00
.gitignore Jemalloc upgraded to version 5.0.1. 2018-05-24 17:17:37 +02:00
.travis.yml Jemalloc upgraded to version 5.0.1. 2018-05-24 17:17:37 +02:00
autogen.sh jemalloc source added 2011-06-20 11:30:06 +02:00
ChangeLog Jemalloc upgraded to version 5.0.1. 2018-05-24 17:17:37 +02:00
config.stamp.in jemalloc source added 2011-06-20 11:30:06 +02:00
configure Generate configure for Jemalloc. 2018-05-24 18:21:13 +02:00
configure.ac Jemalloc upgraded to version 5.0.1. 2018-05-24 17:17:37 +02:00
COPYING Jemalloc upgraded to version 5.0.1. 2018-05-24 17:17:37 +02:00
INSTALL.md Jemalloc upgraded to version 5.0.1. 2018-05-24 17:17:37 +02:00
jemalloc.pc.in Jemalloc upgraded to version 5.0.1. 2018-05-24 17:17:37 +02:00
Makefile.in Jemalloc upgraded to version 5.0.1. 2018-05-24 17:17:37 +02:00
README Jemalloc upgraded to version 5.0.1. 2018-05-24 17:17:37 +02:00
run_tests.sh Jemalloc upgraded to version 5.0.1. 2018-05-24 17:17:37 +02:00
TUNING.md Jemalloc upgraded to version 5.0.1. 2018-05-24 17:17:37 +02:00
VERSION Generate configure for Jemalloc. 2018-05-24 18:21:13 +02:00

jemalloc is a general purpose malloc(3) implementation that emphasizes
fragmentation avoidance and scalable concurrency support.  jemalloc first came
into use as the FreeBSD libc allocator in 2005, and since then it has found its
way into numerous applications that rely on its predictable behavior.  In 2010
jemalloc development efforts broadened to include developer support features
such as heap profiling and extensive monitoring/tuning hooks.  Modern jemalloc
releases continue to be integrated back into FreeBSD, and therefore versatility
remains critical.  Ongoing development efforts trend toward making jemalloc
among the best allocators for a broad range of demanding applications, and
eliminating/mitigating weaknesses that have practical repercussions for real
world applications.

The COPYING file contains copyright and licensing information.

The INSTALL file contains information on how to configure, build, and install
jemalloc.

The ChangeLog file contains a brief summary of changes for each release.

URL: http://jemalloc.net/