1#include <stdio.h>
2#include <chrono>
3#include <thread>
4
5void call_me() {
6 printf(format: "I was called");
7 std::this_thread::sleep_for(rtime: std::chrono::seconds(3));
8}
9
10int
11main()
12{
13 call_me(); // Set a breakpoint here
14 return 0;
15}
16
17

source code of lldb/test/API/functionalities/step-vrs-interrupt/main.cpp