flst / upstream /emscripten /system /lib /libc /compat /__synccall.c
arudradey's picture
Upload folder using huggingface_hub
00df61d verified
Raw
History Blame Contribute Delete
110 Bytes
// just do it, until we have full pthreads
void __synccall(void (*func)(void *), void *ctx) {
func(ctx);
}