aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/load_after_attach/main.cpp
blob: 60bfefb72bb11256be6148a3c9a8bc89fa8b72c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include "attach.h"
#include "dylib.h"
#include <cassert>
#include <chrono>
#include <cstdio>
#include <fstream>
#include <thread>

int main(int argc, char* argv[]) {
  lldb_enable_attach();
  std::ofstream(argv[1]).close();

  // Wait until debugger is attached.
  int main_thread_continue = 0;
  int i = 0;
  int timeout = 10;
  for (i = 0; i < timeout; i++) {
    std::this_thread::sleep_for(std::chrono::seconds(1));  // break here
    if (main_thread_continue) {
      break;
    }
  }
  assert(i != timeout && "timed out waiting for debugger");

  // dlopen the 'liblib_b.so' shared library.
  void* dylib_handle = dylib_open("lib_b");
  assert(dylib_handle && "dlopen failed");

  return i; // break after dlopen
}