xref: /llvm-project/lldb/test/API/macosx/profile_vrs_detach/main.c (revision 08f4b56fb9795b5d271378fb62c3fed67ab1b754)
1 #include <stdio.h>
2 #include <unistd.h>
3 
4 int
main()5 main()
6 {
7   while (1) {
8     sleep(1); // Set a breakpoint here
9     printf("I slept\n");
10   }
11   return 0;
12 }
13