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.
Resources
No resource links recorded.