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

Side by Side Diff: base/threading/worker_pool_posix.h

Issue 10735044: Remove #pragma once. Just from base/ for now. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | « base/threading/worker_pool.h ('k') | base/time.h » ('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 // The thread pool used in the POSIX implementation of WorkerPool dynamically 5 // The thread pool used in the POSIX implementation of WorkerPool dynamically
6 // adds threads as necessary to handle all tasks. It keeps old threads around 6 // adds threads as necessary to handle all tasks. It keeps old threads around
7 // for a period of time to allow them to be reused. After this waiting period, 7 // for a period of time to allow them to be reused. After this waiting period,
8 // the threads exit. This thread pool uses non-joinable threads, therefore 8 // the threads exit. This thread pool uses non-joinable threads, therefore
9 // worker threads are not joined during process shutdown. This means that 9 // worker threads are not joined during process shutdown. This means that
10 // potentially long running tasks (such as DNS lookup) do not block process 10 // potentially long running tasks (such as DNS lookup) do not block process
11 // shutdown, but also means that process shutdown may "leak" objects. Note that 11 // shutdown, but also means that process shutdown may "leak" objects. Note that
12 // although PosixDynamicThreadPool spawns the worker threads and manages the 12 // although PosixDynamicThreadPool spawns the worker threads and manages the
13 // task queue, it does not own the worker threads. The worker threads ask the 13 // task queue, it does not own the worker threads. The worker threads ask the
14 // PosixDynamicThreadPool for work and eventually clean themselves up. The 14 // PosixDynamicThreadPool for work and eventually clean themselves up. The
15 // worker threads all maintain scoped_refptrs to the PosixDynamicThreadPool 15 // worker threads all maintain scoped_refptrs to the PosixDynamicThreadPool
16 // instance, which prevents PosixDynamicThreadPool from disappearing before all 16 // instance, which prevents PosixDynamicThreadPool from disappearing before all
17 // worker threads exit. The owner of PosixDynamicThreadPool should likewise 17 // worker threads exit. The owner of PosixDynamicThreadPool should likewise
18 // maintain a scoped_refptr to the PosixDynamicThreadPool instance. 18 // maintain a scoped_refptr to the PosixDynamicThreadPool instance.
19 // 19 //
20 // NOTE: The classes defined in this file are only meant for use by the POSIX 20 // NOTE: The classes defined in this file are only meant for use by the POSIX
21 // implementation of WorkerPool. No one else should be using these classes. 21 // implementation of WorkerPool. No one else should be using these classes.
22 // These symbols are exported in a header purely for testing purposes. 22 // These symbols are exported in a header purely for testing purposes.
23 23
24 #ifndef BASE_THREADING_WORKER_POOL_POSIX_H_ 24 #ifndef BASE_THREADING_WORKER_POOL_POSIX_H_
25 #define BASE_THREADING_WORKER_POOL_POSIX_H_ 25 #define BASE_THREADING_WORKER_POOL_POSIX_H_
26 #pragma once
27 26
28 #include <queue> 27 #include <queue>
29 #include <string> 28 #include <string>
30 29
31 #include "base/basictypes.h" 30 #include "base/basictypes.h"
32 #include "base/callback_forward.h" 31 #include "base/callback_forward.h"
33 #include "base/location.h" 32 #include "base/location.h"
34 #include "base/time.h" 33 #include "base/time.h"
35 #include "base/memory/ref_counted.h" 34 #include "base/memory/ref_counted.h"
36 #include "base/memory/scoped_ptr.h" 35 #include "base/memory/scoped_ptr.h"
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 // Only used for tests to ensure correct thread ordering. It will always be 90 // Only used for tests to ensure correct thread ordering. It will always be
92 // NULL in non-test code. 91 // NULL in non-test code.
93 scoped_ptr<ConditionVariable> num_idle_threads_cv_; 92 scoped_ptr<ConditionVariable> num_idle_threads_cv_;
94 93
95 DISALLOW_COPY_AND_ASSIGN(PosixDynamicThreadPool); 94 DISALLOW_COPY_AND_ASSIGN(PosixDynamicThreadPool);
96 }; 95 };
97 96
98 } // namespace base 97 } // namespace base
99 98
100 #endif // BASE_THREADING_WORKER_POOL_POSIX_H_ 99 #endif // BASE_THREADING_WORKER_POOL_POSIX_H_
OLDNEW
« no previous file with comments | « base/threading/worker_pool.h ('k') | base/time.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698