malloc
There are 410 repositories under malloc topic.
microsoft/snmalloc
Message passing based allocator
GrapheneOS/hardened_malloc
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.
emeryberger/Hoard
The Hoard Memory Allocator: A Fast, Scalable, and Memory-efficient Malloc for Linux, Windows, and Mac.
LGCooci/KCObjc4_debug
🌈可编译苹果官方源码objc!现在有objc4底层源码,以及libmalloc等可编译版本,大家可以自由LLDB调试!
MaJerle/lwmem
Lightweight dynamic memory manager library for embedded systems with memory constraints. It implements malloc, calloc, realloc and free functions
emeryberger/Heap-Layers
Heap Layers: An Extensible Memory Allocation Infrastructure
pavel-kirienko/o1heap
Constant-complexity, deterministic, very fast memory allocator (heap) for hard real-time high-integrity embedded systems. Allocation takes ≈165 cycles on Cortex M4. There is little activity because the project is finished and does not require further changes.
redox-os/ralloc
Mirror of https://gitlab.redox-os.org/redox-os/ralloc
embeddedartistry/libmemory
Embedded systems memory management library. Implementations for malloc(), free(), and other useful memory management functions
joetifa2003/mm-go
Generic manual memory management for golang
zkwlx/HiMem
HiMem 是知乎内部使用的针对 Android 系统开发的线上应用内存使用监控与分析套件,目前支持 mmap/munmap/malloc/calloc/realloc/free 等库函数的监控,同时提供高性能的 Java 层和 Native 层调用栈捕获能力。
memtt/malt
MALT is a MALloc Tracker to find where and how your made your memory allocations in C/C++/Fortran applications.
johnsonjh/duma
duma: Detect Unintended Memory Access (D.U.M.A.) - A Red-Zone memory allocator
jedisct1/was-not-wasm
A hostile memory allocator to make WebAssembly applications more predictable.
EmuraDaisuke/MemoryAllocator.KanameShiki
Fast multi-threaded memory allocator
schulkinator/memorymanager
A simple, thread-safe memory manager for 64bit C++ applications and games. Focus is on preventing heap fragmentation in the absence of good virtual memory management, at the cost of wasting some memory. It works by globally overriding the new and delete operators.
akutz/go-interface-values
When storing a value in a Go interface allocates memory on the heap.
oneapi-src/unified-memory-framework
A library for constructing allocators and memory pools. It also contains broadly useful abstractions and utilities for memory management. UMF allows users to manage multiple memory pools characterized by different attributes, allowing certain allocation types to be isolated from others and allocated using different hardware resources as required.
miguelperes/custom-malloc
A custom malloc implementation in C explained
js2xxx/ferroc
A lock-free memory allocator
NwabuezeFranklin/alx-low_level_programming
:rocket: Multiple Projects done in C programming language during the ALX Low Level programming steeplechase track , Cohort6
RAGUL1902/Dynamic-Memory-Allocation-in-C
Reimplementing malloc(), calloc(), realloc(), free() in c from scratch using system calls
ralight/mallocfail
Malloc failure testing
strlcat/smalloc
SMalloc -- a *static* memory allocator.
bnclabs/gostore
Storage algorithms.
Theldus/safemalloc
A safe wrapper for [m,c,re]alloc/free functions =)
XEDGit/memdetect
Memdetect is a cross-platform shell script to compile and run your C or C++ project with a wrapper of malloc() and free(), which will help you understand your memory-management and find memory leaks.
portasynthinca3/randalloc
Blazing fast and memory safe malloc implementation using rand.
fklr/atomalloc
atomalloc is an asynchronous, atomic, and lock-free memory allocator written in pure safe Rust
johsteffens/tbman
Memory Manager - Fast, Scalable and Easy to use
Thermadiag/micromalloc
Low memory overhead allocator
yodaos-project/malldump
Attach to a process and dump statistics of low level malloc(ptmalloc, the glibc implementation) of the process.
0xShady/Leak_Hunter
A leak detector for your c project.
jterrazz/42-malloc
💽 C implementation of the malloc library using mmap. Go check the medium article if you want to learn more about how it works.
tier4/heaphook
Replace all the dynamic heap allocation functions by LD_PRELOAD.
savanpatel/malloc
Thread safe and fork safe malloc library.