├── .gitignore ├── LICENSE-MIT ├── Makefile ├── README ├── README.md ├── perf.c ├── skinny_mutex.c ├── skinny_mutex.h └── test.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpw/skinny-mutex/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpw/skinny-mutex/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpw/skinny-mutex/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpw/skinny-mutex/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | README -------------------------------------------------------------------------------- /perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpw/skinny-mutex/HEAD/perf.c -------------------------------------------------------------------------------- /skinny_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpw/skinny-mutex/HEAD/skinny_mutex.c -------------------------------------------------------------------------------- /skinny_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpw/skinny-mutex/HEAD/skinny_mutex.h -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpw/skinny-mutex/HEAD/test.c --------------------------------------------------------------------------------