├── README.txt ├── doc ├── .gitignore └── Doxyfile ├── mkbuild.sh ├── source ├── fast_mutex.h ├── tinythread.cpp └── tinythread.h └── test ├── .gitignore ├── Makefile ├── Makefile.msvc ├── fractal.cpp ├── hello.cpp └── test.cpp /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/tinythreadpp/HEAD/README.txt -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | html 2 | 3 | -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/tinythreadpp/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /mkbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/tinythreadpp/HEAD/mkbuild.sh -------------------------------------------------------------------------------- /source/fast_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/tinythreadpp/HEAD/source/fast_mutex.h -------------------------------------------------------------------------------- /source/tinythread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/tinythreadpp/HEAD/source/tinythread.cpp -------------------------------------------------------------------------------- /source/tinythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/tinythreadpp/HEAD/source/tinythread.h -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.obj 3 | *.exe 4 | fractal 5 | hello 6 | test 7 | 8 | -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/tinythreadpp/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/Makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/tinythreadpp/HEAD/test/Makefile.msvc -------------------------------------------------------------------------------- /test/fractal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/tinythreadpp/HEAD/test/fractal.cpp -------------------------------------------------------------------------------- /test/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/tinythreadpp/HEAD/test/hello.cpp -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/tinythreadpp/HEAD/test/test.cpp --------------------------------------------------------------------------------