Sha256: c0276a0f70647af8655486e9a657e527b6254c1f49671f64417d5080154291ae
Contents?: true
Size: 611 Bytes
Versions: 16
Compression:
Stored size: 611 Bytes
Contents
/** * hdr_malloc.h * Written by Filipe Oliveira and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * * Allocator selection. * * This file is used in order to change the HdrHistogram allocator at compile time. * Just define the following defines to what you want to use. Also add * the include of your alternate allocator if needed (not needed in order * to use the default libc allocator). */ #ifndef HDR_MALLOC_H__ #define HDR_MALLOC_H__ #define hdr_malloc malloc #define hdr_calloc calloc #define hdr_realloc realloc #define hdr_free free #endif
Version data entries
16 entries across 16 versions & 1 rubygems