Sign in
◑
Theme
llvm
/
llvm-project
/
4beeff3c2bf125de9dda8b374ffc9ec052d02810
/
.
/
lldb
/
test
/
Shell
/
Driver
/
Inputs
/
CommandOnCrashMultiThreaded.cpp
blob: f469d82fbbef9decb97885cb7cfcbced74eabd3e [
file
]
#include
<thread>
void
t_func
()
{
asm
volatile
(
"int3\n\t"
);
}
int
main
()
{
std
::
thread t
(
t_func
);
t
.
join
();
return
0
;
}