├── Makefile ├── README.org ├── gsoc_task.h ├── gsoc_task_circular_array.h ├── gsoc_taskqueue.c ├── gsoc_taskqueue.h ├── gsoc_time.h ├── test_gsoc_task_circular_array.c └── test_gsoc_taskqueue.c /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/Lock-free_work-stealing_deque_in_C/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/Lock-free_work-stealing_deque_in_C/HEAD/README.org -------------------------------------------------------------------------------- /gsoc_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/Lock-free_work-stealing_deque_in_C/HEAD/gsoc_task.h -------------------------------------------------------------------------------- /gsoc_task_circular_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/Lock-free_work-stealing_deque_in_C/HEAD/gsoc_task_circular_array.h -------------------------------------------------------------------------------- /gsoc_taskqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/Lock-free_work-stealing_deque_in_C/HEAD/gsoc_taskqueue.c -------------------------------------------------------------------------------- /gsoc_taskqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/Lock-free_work-stealing_deque_in_C/HEAD/gsoc_taskqueue.h -------------------------------------------------------------------------------- /gsoc_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/Lock-free_work-stealing_deque_in_C/HEAD/gsoc_time.h -------------------------------------------------------------------------------- /test_gsoc_task_circular_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/Lock-free_work-stealing_deque_in_C/HEAD/test_gsoc_task_circular_array.c -------------------------------------------------------------------------------- /test_gsoc_taskqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/Lock-free_work-stealing_deque_in_C/HEAD/test_gsoc_taskqueue.c --------------------------------------------------------------------------------