1#include <stdio.h>
2#include <unistd.h>
3
4int
5main()
6{
7 while (1) {
8 sleep(seconds: 1); // Set a breakpoint here
9 printf(format: "I slept\n");
10 }
11 return 0;
12}
13

source code of lldb/test/API/macosx/profile_vrs_detach/main.c