├── .gitignore ├── .luacheckrc ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── dist.ini ├── lfs_ffi.lua ├── lfs_spec.lua ├── lock_unlock.lua ├── test_lock.lua ├── test_valgrind.lua ├── travis.sh └── valgrind.suppress /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacewander/luafilesystem/HEAD/.gitignore -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacewander/luafilesystem/HEAD/.luacheckrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacewander/luafilesystem/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacewander/luafilesystem/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacewander/luafilesystem/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacewander/luafilesystem/HEAD/README.md -------------------------------------------------------------------------------- /dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacewander/luafilesystem/HEAD/dist.ini -------------------------------------------------------------------------------- /lfs_ffi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacewander/luafilesystem/HEAD/lfs_ffi.lua -------------------------------------------------------------------------------- /lfs_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacewander/luafilesystem/HEAD/lfs_spec.lua -------------------------------------------------------------------------------- /lock_unlock.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacewander/luafilesystem/HEAD/lock_unlock.lua -------------------------------------------------------------------------------- /test_lock.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacewander/luafilesystem/HEAD/test_lock.lua -------------------------------------------------------------------------------- /test_valgrind.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacewander/luafilesystem/HEAD/test_valgrind.lua -------------------------------------------------------------------------------- /travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacewander/luafilesystem/HEAD/travis.sh -------------------------------------------------------------------------------- /valgrind.suppress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacewander/luafilesystem/HEAD/valgrind.suppress --------------------------------------------------------------------------------