├── .clang-format ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── common.mk ├── include └── fiber.h ├── scripts ├── aspell-pws ├── commit-msg.hook ├── install-git-hooks ├── pre-commit.hook └── pre-push.hook ├── src └── fiber.c └── tests ├── test-cond.c ├── test-context.c ├── test-mutex.c └── test-yield.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/fiber/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/fiber/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/fiber/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/fiber/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/fiber/HEAD/README.md -------------------------------------------------------------------------------- /common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/fiber/HEAD/common.mk -------------------------------------------------------------------------------- /include/fiber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/fiber/HEAD/include/fiber.h -------------------------------------------------------------------------------- /scripts/aspell-pws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/fiber/HEAD/scripts/aspell-pws -------------------------------------------------------------------------------- /scripts/commit-msg.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/fiber/HEAD/scripts/commit-msg.hook -------------------------------------------------------------------------------- /scripts/install-git-hooks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/fiber/HEAD/scripts/install-git-hooks -------------------------------------------------------------------------------- /scripts/pre-commit.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/fiber/HEAD/scripts/pre-commit.hook -------------------------------------------------------------------------------- /scripts/pre-push.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/fiber/HEAD/scripts/pre-push.hook -------------------------------------------------------------------------------- /src/fiber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/fiber/HEAD/src/fiber.c -------------------------------------------------------------------------------- /tests/test-cond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/fiber/HEAD/tests/test-cond.c -------------------------------------------------------------------------------- /tests/test-context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/fiber/HEAD/tests/test-context.c -------------------------------------------------------------------------------- /tests/test-mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/fiber/HEAD/tests/test-mutex.c -------------------------------------------------------------------------------- /tests/test-yield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/fiber/HEAD/tests/test-yield.c --------------------------------------------------------------------------------