You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
5 years ago | |
---|---|---|
src | 5 years ago | |
.editorconfig | 5 years ago | |
.gitignore | 5 years ago | |
.travis.yml | 5 years ago | |
LICENSE | 5 years ago | |
Makefile | 5 years ago | |
README.md | 5 years ago | |
shard.yml | 5 years ago |
README.md
cryloc
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.
Demo
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
Installation
Add this to your application's shard.yml
:
dependencies:
cryloc:
github: Thog/cryloc
Usage
require "cryloc"
TODO: Write usage instructions here
Development
TODO: Write development instructions here
Contributing
- 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
Contributors
- Thog Thog - creator, maintainer