Sign in
llvm
/
llvm-project
/
41a94de75caacb979070ec7a010dfe3c4e9f116f
/
.
/
lldb
/
test
/
API
/
functionalities
/
thread
/
state_after_expression
/
main.cpp
blob: 338232ece6326999e2ba34a5185e1c5800e101e4 [
file
] [
log
] [
blame
]
#include
<thread>
void
thread_func
()
{
// Set a breakpoint here
}
int
main
()
{
// Set a breakpoint here
std
::
thread stopped_thread
(
thread_func
);
stopped_thread
.
join
();
return
0
;
}