├── .gitignore ├── Makefile ├── README.md ├── TODO ├── mmap_access_mode.h ├── mmap_allocator.h ├── mmap_exception.h ├── mmap_file_pool.cpp ├── mmap_file_pool.h ├── mmappable_vector.h ├── test_allocator.cpp └── test_mmap_fixed.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesthoma/mmap_allocator/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesthoma/mmap_allocator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesthoma/mmap_allocator/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesthoma/mmap_allocator/HEAD/TODO -------------------------------------------------------------------------------- /mmap_access_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesthoma/mmap_allocator/HEAD/mmap_access_mode.h -------------------------------------------------------------------------------- /mmap_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesthoma/mmap_allocator/HEAD/mmap_allocator.h -------------------------------------------------------------------------------- /mmap_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesthoma/mmap_allocator/HEAD/mmap_exception.h -------------------------------------------------------------------------------- /mmap_file_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesthoma/mmap_allocator/HEAD/mmap_file_pool.cpp -------------------------------------------------------------------------------- /mmap_file_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesthoma/mmap_allocator/HEAD/mmap_file_pool.h -------------------------------------------------------------------------------- /mmappable_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesthoma/mmap_allocator/HEAD/mmappable_vector.h -------------------------------------------------------------------------------- /test_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesthoma/mmap_allocator/HEAD/test_allocator.cpp -------------------------------------------------------------------------------- /test_mmap_fixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesthoma/mmap_allocator/HEAD/test_mmap_fixed.c --------------------------------------------------------------------------------