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

Side by Side Diff: runtime/vm/thread_barrier.h

Issue 2974233002: VM: Re-format to use at most one newline between functions (Closed)
Patch Set: Rebase and merge Created 3 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
« no previous file with comments | « runtime/vm/thread.cc ('k') | runtime/vm/thread_barrier_test.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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef RUNTIME_VM_THREAD_BARRIER_H_ 5 #ifndef RUNTIME_VM_THREAD_BARRIER_H_
6 #define RUNTIME_VM_THREAD_BARRIER_H_ 6 #define RUNTIME_VM_THREAD_BARRIER_H_
7 7
8 #include "vm/globals.h" 8 #include "vm/globals.h"
9 #include "vm/lockers.h"
9 #include "vm/os_thread.h" 10 #include "vm/os_thread.h"
10 #include "vm/lockers.h"
11 11
12 namespace dart { 12 namespace dart {
13 13
14 // Thread barrier with: 14 // Thread barrier with:
15 // * fixed (at construction) number n of participating threads {T1,T2,T3,...,Tn} 15 // * fixed (at construction) number n of participating threads {T1,T2,T3,...,Tn}
16 // * unknown number of rounds. 16 // * unknown number of rounds.
17 // Requirements: 17 // Requirements:
18 // * there is some R such that each participating thread makes 18 // * there is some R such that each participating thread makes
19 // R calls to Sync() followed by its one and only call to Exit(). 19 // R calls to Sync() followed by its one and only call to Exit().
20 // Guarantees: 20 // Guarantees:
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 111
112 Monitor* done_monitor_; // TODO(koda): Try to optimize this away. 112 Monitor* done_monitor_; // TODO(koda): Try to optimize this away.
113 bool done_; 113 bool done_;
114 114
115 DISALLOW_COPY_AND_ASSIGN(ThreadBarrier); 115 DISALLOW_COPY_AND_ASSIGN(ThreadBarrier);
116 }; 116 };
117 117
118 } // namespace dart 118 } // namespace dart
119 119
120 #endif // RUNTIME_VM_THREAD_BARRIER_H_ 120 #endif // RUNTIME_VM_THREAD_BARRIER_H_
OLDNEW
« no previous file with comments | « runtime/vm/thread.cc ('k') | runtime/vm/thread_barrier_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698