Files
clang-p2996/lldb/test/API/macosx/profile_vrs_detach/main.c
2021-10-21 17:32:15 -07:00

13 lines
149 B
C

#include <stdio.h>
#include <unistd.h>
int
main()
{
while (1) {
sleep(1); // Set a breakpoint here
printf("I slept\n");
}
return 0;
}