1#include <iostream> 2#include <thread> 3 4extern "C" void doit() { 5 std::cout << "mt: thread=" << std::this_thread::get_id() << std::endl; 6}