Sign in
android
/
toolchain
/
rustc
/
bcf972c0208490b0eb3ce3c170c2db486ba945b3
/
.
/
src
/
llvm-project
/
lldb
/
test
/
API
/
functionalities
/
step-vrs-interrupt
/
main.cpp
blob: 2c818921ee5f100d8296244ca29db85a429f5c18 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<chrono>
#include
<thread>
void
call_me
()
{
printf
(
"I was called"
);
std
::
this_thread
::
sleep_for
(
std
::
chrono
::
seconds
(
3
));
}
int
main
()
{
call_me
();
// Set a breakpoint here
return
0
;
}