Registry / utility / tinycthread

tinycthread

JSON →
library2019-08-06vcpkgunverified

Small, portable implementation of the C11 threads API.

vcpkg install tinycthread
INSTALL
IMPORT
SIG · TINYCTHREAD
T
tinycthread
utilitycppv2019-08-06
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

tinycthread.h
✓ #include <tinycthread.h>

Create and join a thread

#include <tinycthread.h> #include <stdio.h> int thread_func(void *arg) { printf("Hello from thread\n"); return 0; } int main() { thrd_t thread; thrd_create(&thread, thread_func, NULL); thrd_join(thread, NULL); return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
2019-08-06latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
10 hits · last 30 days
node
10
Resources

No resource links recorded.

tinycthread — pip install tinycthread · libregistry