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

Side by Side Diff: src/base/once.h

Issue 1371083003: [presubmit] Enable readability/namespace linter checking. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased. Created 5 years, 2 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
« no previous file with comments | « src/base/macros.h ('k') | src/base/once.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project 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 // emulates google3/base/once.h 5 // emulates google3/base/once.h
6 // 6 //
7 // This header is intended to be included only by v8's internal code. Users 7 // This header is intended to be included only by v8's internal code. Users
8 // should not use this directly. 8 // should not use this directly.
9 // 9 //
10 // This is basically a portable version of pthread_once(). 10 // This is basically a portable version of pthread_once().
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 90
91 template <typename Arg> 91 template <typename Arg>
92 inline void CallOnce(OnceType* once, 92 inline void CallOnce(OnceType* once,
93 typename OneArgFunction<Arg*>::type init_func, Arg* arg) { 93 typename OneArgFunction<Arg*>::type init_func, Arg* arg) {
94 if (Acquire_Load(once) != ONCE_STATE_DONE) { 94 if (Acquire_Load(once) != ONCE_STATE_DONE) {
95 CallOnceImpl(once, reinterpret_cast<PointerArgFunction>(init_func), 95 CallOnceImpl(once, reinterpret_cast<PointerArgFunction>(init_func),
96 static_cast<void*>(arg)); 96 static_cast<void*>(arg));
97 } 97 }
98 } 98 }
99 99
100 } } // namespace v8::base 100 } // namespace base
101 } // namespace v8
101 102
102 #endif // V8_BASE_ONCE_H_ 103 #endif // V8_BASE_ONCE_H_
OLDNEW
« no previous file with comments | « src/base/macros.h ('k') | src/base/once.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698