Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
standalone
libcxx
mt_doit.cpp
pretty
plain
permalink
blame
history
•
6 lines
•
141 B
1
#include <iostream>
2
#include <thread>
3
4
extern "C" void doit() {
5
std::cout << "mt: thread=" << std::this_thread::get_id() << std::endl;
6
}