Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(288)

Side by Side Diff: sandbox/win/src/win2k_threadpool.h

Issue 10783004: Move Windows Sandbox, trybots version (don't commit me!) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to top of tree Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sandbox/win/src/unload_dll_test.cc ('k') | sandbox/win/src/win2k_threadpool.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <list> 8 #include <list>
9 #include <algorithm> 9 #include <algorithm>
10 #include "sandbox/src/crosscall_server.h" 10 #include "sandbox/win/src/crosscall_server.h"
11 11
12 namespace sandbox { 12 namespace sandbox {
13 13
14 // Win2kThreadPool a simple implementation of a thread provider as required 14 // Win2kThreadPool a simple implementation of a thread provider as required
15 // 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
16 // and requirements of this interface. 16 // and requirements of this interface.
17 // 17 //
18 // 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
19 // 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
20 // events: as many as channels. A thread pool does not create a thread per 20 // events: as many as channels. A thread pool does not create a thread per
(...skipping 28 matching lines...) Expand all
49 typedef std::list<PoolObject> PoolObjects; 49 typedef std::list<PoolObject> PoolObjects;
50 PoolObjects pool_objects_; 50 PoolObjects pool_objects_;
51 // This lock protects the list of pool wait objects. 51 // This lock protects the list of pool wait objects.
52 CRITICAL_SECTION lock_; 52 CRITICAL_SECTION lock_;
53 DISALLOW_COPY_AND_ASSIGN(Win2kThreadPool); 53 DISALLOW_COPY_AND_ASSIGN(Win2kThreadPool);
54 }; 54 };
55 55
56 } // namespace sandbox 56 } // namespace sandbox
57 57
58 #endif // SANDBOX_SRC_WIN2K_THREADPOOL_H_ 58 #endif // SANDBOX_SRC_WIN2K_THREADPOOL_H_
OLDNEW
« no previous file with comments | « sandbox/win/src/unload_dll_test.cc ('k') | sandbox/win/src/win2k_threadpool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698