summaryrefslogtreecommitdiff
path: root/gdb/gdbsupport/thread_pool.h
blob: 77760a95042838e691d936ddeffd6ecb8bd2a015 (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
#ifndef PARALLEL_FOR_H
#define PARALLEL_FOR_H

#include <queue>
#include <thread>
#include <vector>
#include <functional>
#include <atomic>
#include <mutex>
#include <condition_variable>

namespace gdb {

class thread_pool {
 public:
  thread_pool() : m_started (false), m_shutdown (false) {}
  ~thread_pool();

  bool started() const { return m_started; }

  void start(size_t num_threads);

  typedef std::function<void ()> task;
  void post_task(task t) {
    std::lock_guard<std::mutex> guard (m_tasks_mutex);
    m_tasks.push (t);
    m_tasks_cv.notify_one ();
  }

 private:
  void thread_function();

  bool m_started;
  std::vector<std::thread> m_threads;
  std::atomic<bool> m_shutdown;
  std::queue<task> m_tasks;
  std::condition_variable m_tasks_cv;
  std::mutex m_tasks_mutex;
};

}

#endif