aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/Shell/Driver/Inputs/CommandOnCrashMultiThreaded.cpp
blob: f469d82fbbef9decb97885cb7cfcbced74eabd3e (plain)
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;
}