Sign in
llvm
/
llvm-project
/
a78861fc55d18046989ff4d624a037e9181da170
/
.
/
lldb
/
test
/
API
/
macosx
/
profile_vrs_detach
/
main.c
blob: 939308414edcfc4283fdfeed39153c2568324698 [
file
]
#include
<stdio.h>
#include
<unistd.h>
int
main
()
{
while
(
1
)
{
sleep
(
1
);
// Set a breakpoint here
printf
(
"I slept\n"
);
}
return
0
;
}