Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/lvntky/memory_allocator

Artifacts of dynamic memory allocation such as malloc and free from scratch implementation.
https://github.com/lvntky/memory_allocator

c11 dynamic-memory-allocation malloc malloc-free memory memory-management memoryall

Last synced: 17 days ago
JSON representation

Artifacts of dynamic memory allocation such as malloc and free from scratch implementation.

Awesome Lists containing this project

README

        

# MEMORY ALLOCATOR

Artifacts of dynamic memory allocation such as malloc and free from scratch implementation.

Ofcourse these repo is not as effective as stdlib malloc but greate instance and way to embrace memory allocation.

## Build
```
make -B
```
Or
```
make interface
```

## Limiations
* Works only in x86_64 machines
* Works only with GCC and Linux
* No packed structs.

## Referances
* ![tsoding daily tutorial](https://www.youtube.com/watch?v=sZ8GJ1TiMdk)

* https://arjunsreedharan.org/post/148675821737/memory-allocators-101-write-a-simple-memory