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

Side by Side Diff: runtime/bin/process.h

Issue 463993002: - Separate the thread implementation used in bin/ and vm/ (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 4 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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 BIN_PROCESS_H_ 5 #ifndef BIN_PROCESS_H_
6 #define BIN_PROCESS_H_ 6 #define BIN_PROCESS_H_
7 7
8 #include "bin/builtin.h" 8 #include "bin/builtin.h"
9 #include "bin/io_buffer.h" 9 #include "bin/io_buffer.h"
10 #include "bin/lockers.h"
10 #include "bin/thread.h" 11 #include "bin/thread.h"
11 #include "platform/globals.h" 12 #include "platform/globals.h"
12 #include "platform/utils.h" 13 #include "platform/utils.h"
13 14
14 15
15 namespace dart { 16 namespace dart {
16 namespace bin { 17 namespace bin {
17 18
18 class ProcessResult { 19 class ProcessResult {
19 public: 20 public:
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 intptr_t data_size_; 275 intptr_t data_size_;
275 276
276 // Number of free bytes in the last node in the list. 277 // Number of free bytes in the last node in the list.
277 intptr_t free_size_; 278 intptr_t free_size_;
278 }; 279 };
279 280
280 } // namespace bin 281 } // namespace bin
281 } // namespace dart 282 } // namespace dart
282 283
283 #endif // BIN_PROCESS_H_ 284 #endif // BIN_PROCESS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698