Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/system/lib/libc/compat/__synccall.c
6170 views
1
// just do it, until we have full pthreads
2
void __synccall(void (*func)(void *), void *ctx) {
3
func(ctx);
4
}
5
6
7