-
Updated
Mar 3, 2020 - C++
#
malloc
Here are 147 public repositories matching this topic...
The Hoard Memory Allocator: A Fast, Scalable, and Memory-efficient Malloc for Linux, Windows, and Mac.
Hardened allocator designed for modern systems. It has integration into Android's Bionic libc and can be used externally with musl and glibc as a dynamic library for use on other Linux-based platforms. It will gain more portability / integration over time.
security
memory
memory-allocator
malloc
hardening
memory-allocation
quarantine
malloc-library
slab-allocator
grapheneos
-
Updated
Jun 24, 2020 - C
-
Updated
Aug 13, 2019 - Rust
Heap Layers: An Extensible Memory Allocation Infrastructure
-
Updated
Jun 26, 2020 - C++
A hostile memory allocator to make WebAssembly applications more predictable.
-
Updated
May 12, 2020 - Rust
svalat
commented
Sep 10, 2019
In case we forget the debug symbols we might want to run a post mortem tool to recompute the symbols. This can be done in NodeJS directly without too much issues.
Can be called Malt-resolve.
Fast multi-threaded memory allocator
multi-threading
cpp
multithreading
allocator
memory-allocator
malloc
memory-management
lock-free
memory-allocation
malloc-benchmarks
malloc-library
-
Updated
Oct 19, 2019 - C++
Attach to a process and dump statistics of low level malloc(ptmalloc, the glibc implementation) of the process.
-
Updated
Jun 13, 2019 - C
prataprc
commented
Mar 19, 2018
Document file format for all files related to bubt, its block-type, entry format and points of interest related to their formats.
Trace memory allocations and collect stats
-
Updated
Mar 7, 2020 - Ruby
A custom malloc implementation in C explained
-
Updated
Sep 29, 2017 - C
SMalloc -- a *static* memory allocator.
-
Updated
Apr 19, 2018 - C
-
Updated
Jun 3, 2019 - C
A library meant for testing application behavior in out-of-memory conditions with the use of LD_PRELOAD trick.
-
Updated
Mar 3, 2017 - C
Simple benchmarking scripts to run on any machine to compare different C/C++ malloc implementations.
-
Updated
Mar 17, 2018 - C
Memory Manager - Fast, Scalable and Easy to use
-
Updated
Feb 27, 2020 - C
TCNVMalloc is an efficient wear-aware allocator for Non-Volatile Memory
-
Updated
Sep 4, 2018 - TeX
-
Updated
Feb 11, 2018 - C
Minimal first-fit memory allocator implementation
-
Updated
Feb 25, 2019 - C
A simple implementation of glibc functions malloc(), free() and realloc()
c
security
memory
gnu-linux
malloc
pointer
free
memory-allocation
glibc
calloc
security-tools
ptr
size-bytes
malloc-free
realloc
malloc-library
malloc-functions
-
Updated
Mar 14, 2018 - C
Improve this page
Add a description, image, and links to the malloc topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the malloc topic, visit your repo's landing page and select "manage topics."
With aligned_alloc() in the C11 standard, free() is called to free memory, rather than an equivalent
aligned_free().We should update our library with some logic that can be used to correctly call aligned_free() if free() is used instead.