Sign in
◑
Theme
llvm
/
llvm-project
/
4beeff3c2bf125de9dda8b374ffc9ec052d02810
/
.
/
lldb
/
test
/
API
/
functionalities
/
step-vrs-interrupt
/
main.cpp
blob: ab08ba31f8f8cdd73766bce5ce53767fc269bce1 [
file
]
#include
<chrono>
#include
<thread>
void
call_me
()
{
std
::
this_thread
::
sleep_for
(
std
::
chrono
::
seconds
(
3
));
}
int
main
()
{
call_me
();
// Set a breakpoint here
return
0
;
}