blob: f469d82fbbef9decb97885cb7cfcbced74eabd3e [file] [log] [blame] [edit]
#include <thread>
void t_func() {
asm volatile(
"int3\n\t"
);
}
int main() {
std::thread t(t_func);
t.join();
return 0;
}