├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── slab.c ├── slab.h └── test.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.out -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucastsa/slab_allocator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucastsa/slab_allocator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucastsa/slab_allocator/HEAD/README.md -------------------------------------------------------------------------------- /slab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucastsa/slab_allocator/HEAD/slab.c -------------------------------------------------------------------------------- /slab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucastsa/slab_allocator/HEAD/slab.h -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucastsa/slab_allocator/HEAD/test.c --------------------------------------------------------------------------------