OLD | NEW |
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 Loading... |
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_ |
OLD | NEW |