xref: /llvm-project/lldb/test/Shell/Driver/Inputs/CommandOnCrashMultiThreaded.cpp (revision 8a3597d73c8f694ca8c991d8cb4bb97a4ac8ba8c)
1 #include <thread>
2 
t_func()3 void t_func() {
4   asm volatile(
5     "int3\n\t"
6   );
7 }
8 
main()9 int main() {
10   std::thread t(t_func);
11   t.join();
12   return 0;
13 }
14