DEBSOURCES
Skip Quicknav
sources / emscripten / 3.1.6~dfsg-5 / tests / pthread / test_pthread_cxx_threads.cpp
12345678910
#include <thread> int main() { std::thread t([]{ printf("in thread\n"); }); t.join(); printf("done\n"); return 0; }