| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef SANDBOX_SRC_WIN2K_THREADPOOL_H_ | 5 #ifndef SANDBOX_SRC_WIN2K_THREADPOOL_H_ |
| 6 #define SANDBOX_SRC_WIN2K_THREADPOOL_H_ | 6 #define SANDBOX_SRC_WIN2K_THREADPOOL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <list> |
| 9 | |
| 10 #include <algorithm> | 9 #include <algorithm> |
| 11 #include <list> | |
| 12 #include "base/macros.h" | |
| 13 #include "sandbox/win/src/crosscall_server.h" | 10 #include "sandbox/win/src/crosscall_server.h" |
| 14 | 11 |
| 15 namespace sandbox { | 12 namespace sandbox { |
| 16 | 13 |
| 17 // Win2kThreadPool a simple implementation of a thread provider as required | 14 // Win2kThreadPool a simple implementation of a thread provider as required |
| 18 // for the sandbox IPC subsystem. See sandbox\crosscall_server.h for the details | 15 // for the sandbox IPC subsystem. See sandbox\crosscall_server.h for the details |
| 19 // and requirements of this interface. | 16 // and requirements of this interface. |
| 20 // | 17 // |
| 21 // Implementing the thread provider as a thread pool is desirable in the case | 18 // Implementing the thread provider as a thread pool is desirable in the case |
| 22 // of shared memory IPC because it can generate a large number of waitable | 19 // of shared memory IPC because it can generate a large number of waitable |
| (...skipping 29 matching lines...) Expand all Loading... |
| 52 PoolObjects pool_objects_; | 49 PoolObjects pool_objects_; |
| 53 // This lock protects the list of pool wait objects. | 50 // This lock protects the list of pool wait objects. |
| 54 CRITICAL_SECTION lock_; | 51 CRITICAL_SECTION lock_; |
| 55 | 52 |
| 56 DISALLOW_COPY_AND_ASSIGN(Win2kThreadPool); | 53 DISALLOW_COPY_AND_ASSIGN(Win2kThreadPool); |
| 57 }; | 54 }; |
| 58 | 55 |
| 59 } // namespace sandbox | 56 } // namespace sandbox |
| 60 | 57 |
| 61 #endif // SANDBOX_SRC_WIN2K_THREADPOOL_H_ | 58 #endif // SANDBOX_SRC_WIN2K_THREADPOOL_H_ |
| OLD | NEW |