r3/src
Michael Steinert b3dbf75da5 Remove zmalloc dependency
Zmalloc comes from Redis. It's purpose is to track total allocations so
that a maximum can be set. For more information see the following links:

https://groups.google.com/forum/#!topic/redis-db/dPRdpowqJsY
https://stackoverflow.com/questions/22729730/when-would-one-use-malloc-over-zmalloc

This allocator is slower, not needed, and conflicts with Zlib (when
linking statically). This patch removes Zmalloc in favor of the system
allocator. Application developers can still choose to override the
allocator in their applications, e.g. Jemalloc, TCMalloc, etc.

Fixes #104
2018-07-10 08:20:46 -05:00
..
CMakeLists.txt Remove zmalloc dependency 2018-07-10 08:20:46 -05:00
edge.c Remove zmalloc dependency 2018-07-10 08:20:46 -05:00
gvc.c Remove zmalloc dependency 2018-07-10 08:20:46 -05:00
json.c Changed r3 memory model, made few optimizing 2016-03-22 07:23:37 +05:00
list.c Remove zmalloc dependency 2018-07-10 08:20:46 -05:00
Makefile.am Remove zmalloc dependency 2018-07-10 08:20:46 -05:00
match_entry.c Remove zmalloc dependency 2018-07-10 08:20:46 -05:00
memory.c Use the generated config.h instead to enable feature macros 2018-02-21 15:57:25 +01:00
node.c Remove zmalloc dependency 2018-07-10 08:20:46 -05:00
r3_debug.h Move debug macros to private header files 2015-11-17 21:24:36 +08:00
slug.c Remove zmalloc dependency 2018-07-10 08:20:46 -05:00
slug.h Changed r3 memory model, made few optimizing 2016-03-22 07:23:37 +05:00
str.c Remove zmalloc dependency 2018-07-10 08:20:46 -05:00
str.h Move private function to src/str.h 2015-11-17 21:13:38 +08:00
token.c Remove zmalloc dependency 2018-07-10 08:20:46 -05:00