1 2 3 4 5 6 7 8 9 10 11 12 13
#include <thread> void t_func() { asm volatile( "int3\n\t" ); } int main() { std::thread t(t_func); t.join(); return 0; }