flst / upstream /emscripten /test /pthread /test_pthread_cxx_threads.cpp
arudradey's picture
Upload folder using huggingface_hub
00df61d verified
Raw
History Blame Contribute Delete
131 Bytes
#include <thread>
int main() {
std::thread t([]{
printf("in thread\n");
});
t.join();
printf("done\n");
return 0;
}