A platform independent memory allocator in Crystal.
For now, the implementation is based on a free list but more implementations will come in the future.
An implementation is provided for x86_64-*-linux-gnu. It's design as a malloc(3) replacement and provide a static and dynamic shared library.
See here for the implementation.
To build it, uses:
make
Add this to your application's shard.yml
:
dependencies:
cryloc:
github: Thog/cryloc
require "cryloc"
TODO: Write usage instructions here
TODO: Write development instructions here
- Fork it (https://github.com/Thog/cryloc/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
- Thog Thog - creator, maintainer