aboutsummaryrefslogtreecommitdiff
path: root/test/standalone/libcxx/mt_doit.cpp
blob: d54d443aef8f33fda1d60587f4334a1456b4c67e (plain)
1
2
3
4
5
6
#include <iostream>
#include <thread>

extern "C" void doit() {
    std::cout << "mt: thread=" << std::this_thread::get_id() << std::endl;
}