An open API service indexing awesome lists of open source software.

https://github.com/claudemuller/arena-allocator.c

An arena/linear memory allocator built in C
https://github.com/claudemuller/arena-allocator.c

arena-allocator c linear-allocator memory-allocator memory-management

Last synced: 7 days ago
JSON representation

An arena/linear memory allocator built in C

Awesome Lists containing this project

README

        

# Arena Allocator

An arena/linear memory allocator built in C.

# Requirements

- [clang](https://clang.llvm.org/)
- [make](https://www.gnu.org/software/make/)

# Build

```bash
make build

# Build with AddressSanitizer (ASAN)
make build-asan

# Build a debug binary
make build-debug
```

# Run

```bash
make run

# Run with AddressSanitizer (ASAN)
make run-asan
```

# Debugging with `lldb`

```bash
make debug
```