summaryrefslogtreecommitdiff
path: root/chromium/sandbox/win/src/threadpool.cc
blob: d4f9a5548709835d63dcdeed7963a62a821141ca (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "sandbox/win/src/threadpool.h"

#include <stddef.h>

#include "sandbox/win/src/win_utils.h"

namespace sandbox {

ThreadPool::ThreadPool() {
  ::InitializeCriticalSection(&lock_);
}

bool ThreadPool::RegisterWait(const void* cookie,
                              HANDLE waitable_object,
                              CrossCallIPCCallback callback,
                              void* context) {
  if (0 == cookie) {
    return false;
  }
  HANDLE pool_object = nullptr;
  // create a wait for a kernel object, with no timeout
  if (!::RegisterWaitForSingleObject(&pool_object, waitable_object, callback,
                                     context, INFINITE, WT_EXECUTEDEFAULT)) {
    return false;
  }
  PoolObject pool_obj = {cookie, pool_object};
  AutoLock lock(&lock_);
  pool_objects_.push_back(pool_obj);
  return true;
}

bool ThreadPool::UnRegisterWaits(void* cookie) {
  if (0 == cookie) {
    return false;
  }
  std::vector<HANDLE> finished_waits;
  {
    AutoLock lock(&lock_);
    PoolObjects::iterator it = pool_objects_.begin();
    while (it != pool_objects_.end()) {
      if (it->cookie == cookie) {
        HANDLE wait = it->wait;
        it = pool_objects_.erase(it);
        finished_waits.push_back(wait);
      } else {
        ++it;
      }
    }
  }
  bool success = true;
  for (HANDLE wait : finished_waits) {
    success &= (::UnregisterWaitEx(wait, INVALID_HANDLE_VALUE) != 0);
  }
  return success;
}

size_t ThreadPool::OutstandingWaits() {
  AutoLock lock(&lock_);
  return pool_objects_.size();
}

ThreadPool::~ThreadPool() {
  // Here we used to unregister all the pool wait handles. Now, following the
  // rest of the code we avoid lengthy or blocking calls given that the process
  // is being torn down.
  ::DeleteCriticalSection(&lock_);
}

}  // namespace sandbox