summaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/main.cpp
blob: 94a12c6241d90285b3ffcd964b7789229cf9f5a5 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//===-- main.cpp ------------------------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include <chrono>
#include <cstdio>
#include <mutex>
#include <random>
#include <thread>

#define NUM_OF_THREADS 4

std::mutex hw_break_mutex;

void
hw_break_function (uint32_t thread_index) {
  printf ("%s called by Thread #%u...\n", __FUNCTION__, thread_index);
}


void
thread_func (uint32_t thread_index) {
  printf ("%s (thread index = %u) starting...\n", __FUNCTION__, thread_index);

  hw_break_mutex.lock();
  
  hw_break_function(thread_index); // Call hw_break_function

  hw_break_mutex.unlock();
}


int main (int argc, char const *argv[])
{
  std::thread threads[NUM_OF_THREADS]; 

  printf ("Starting thread creation with hardware breakpoint set...\n");

  for (auto &thread : threads)
    thread = std::thread{thread_func, std::distance(threads, &thread)};

  for (auto &thread : threads)
    thread.join();

  return 0;
}