Sign in
llvm
/
llvm-project
/
a78861fc55d18046989ff4d624a037e9181da170
/
.
/
lldb
/
test
/
API
/
functionalities
/
breakpoint
/
breakpoint_set_restart
/
main.cpp
blob: d1b6116b5b75b599d2506414a5353dd04d03c1b4 [
file
] [
log
] [
blame
]
#include
<chrono>
#include
<stdio.h>
#include
<thread>
int
main
(
int
argc
,
char
const
*
argv
[])
{
static
bool
done
=
false
;
while
(!
done
)
{
std
::
this_thread
::
sleep_for
(
std
::
chrono
::
milliseconds
{
100
});
}
printf
(
"Set a breakpoint here.\n"
);
return
0
;
}