Here are
154 public repositories
matching this topic...
The Hoard Memory Allocator: A Fast, Scalable, and Memory-efficient Malloc for Linux, Windows, and Mac.
Message passing based allocator
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.
Updated
Aug 13, 2019
Rust
Heap Layers: An Extensible Memory Allocation Infrastructure
A hostile memory allocator to make WebAssembly applications more predictable.
Updated
May 12, 2020
Rust
Lightweight dynamic memory manager library for embedded systems with memory constraints. It implements malloc, calloc, realloc and free functions
Fast multi-threaded memory allocator
Attach to a process and dump statistics of low level malloc(ptmalloc, the glibc implementation) of the process.
Trace memory allocations and collect stats
A custom malloc implementation in C explained
15-213计算机导论(深入理解计算机系统) lab
SMalloc -- a *static* memory allocator.
Thread safe and fork safe malloc library.
Memory Manager - Fast, Scalable and Easy to use
A library meant for testing application behavior in out-of-memory conditions with the use of LD_PRELOAD trick.
Ruby GC malloc_trim for Rails
Updated
Nov 9, 2019
Makefile
Simple benchmarking scripts to run on any machine to compare different C/C++ malloc implementations.
C Dili; Giriş - Orta ve İleri Seviye Örnek Uygulamalar
TCNVMalloc is an efficient wear-aware allocator for Non-Volatile Memory
Попытка сделать простую операционную систему для x86 процессоров.
A simple implementation of glibc functions malloc(), free() and realloc()
Minimal first-fit memory allocator implementation
Improve this page
Add a description, image, and links to the
malloc
topic page so that developers can more easily learn about it.
Curate this topic
Add this topic to your repo
To associate your repository with the
malloc
topic, visit your repo's landing page and select "manage topics."
Learn more
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.
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.