├── .gitignore ├── CMakeLists.txt ├── README.md ├── fast_mutex.h ├── tests ├── fractal.cpp ├── future.cpp ├── hello.cpp ├── pool.cpp ├── test.cpp └── timer.h ├── tinythread.cpp ├── tinythread.h ├── tinythread_async.h ├── tinythread_future.h ├── tinythread_pool.cpp ├── tinythread_pool.h ├── tinythread_queue.h └── tinythread_t.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdduke/tthread/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdduke/tthread/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdduke/tthread/HEAD/README.md -------------------------------------------------------------------------------- /fast_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdduke/tthread/HEAD/fast_mutex.h -------------------------------------------------------------------------------- /tests/fractal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdduke/tthread/HEAD/tests/fractal.cpp -------------------------------------------------------------------------------- /tests/future.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdduke/tthread/HEAD/tests/future.cpp -------------------------------------------------------------------------------- /tests/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdduke/tthread/HEAD/tests/hello.cpp -------------------------------------------------------------------------------- /tests/pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdduke/tthread/HEAD/tests/pool.cpp -------------------------------------------------------------------------------- /tests/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdduke/tthread/HEAD/tests/test.cpp -------------------------------------------------------------------------------- /tests/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdduke/tthread/HEAD/tests/timer.h -------------------------------------------------------------------------------- /tinythread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdduke/tthread/HEAD/tinythread.cpp -------------------------------------------------------------------------------- /tinythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdduke/tthread/HEAD/tinythread.h -------------------------------------------------------------------------------- /tinythread_async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdduke/tthread/HEAD/tinythread_async.h -------------------------------------------------------------------------------- /tinythread_future.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdduke/tthread/HEAD/tinythread_future.h -------------------------------------------------------------------------------- /tinythread_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdduke/tthread/HEAD/tinythread_pool.cpp -------------------------------------------------------------------------------- /tinythread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdduke/tthread/HEAD/tinythread_pool.h -------------------------------------------------------------------------------- /tinythread_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdduke/tthread/HEAD/tinythread_queue.h -------------------------------------------------------------------------------- /tinythread_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdduke/tthread/HEAD/tinythread_t.h --------------------------------------------------------------------------------