| OLD | NEW |
| 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 #include <errno.h> | 5 #include <errno.h> |
| 6 #include <stdlib.h> | 6 #include <stdlib.h> |
| 7 #include <string.h> | 7 #include <string.h> |
| 8 #include <sys/stat.h> | 8 #include <sys/stat.h> |
| 9 | 9 |
| 10 #include <algorithm> | 10 #include <algorithm> |
| (...skipping 1558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1569 return handle_scope.Escape(context); | 1569 return handle_scope.Escape(context); |
| 1570 } | 1570 } |
| 1571 | 1571 |
| 1572 | 1572 |
| 1573 void Shell::Exit(int exit_code) { | 1573 void Shell::Exit(int exit_code) { |
| 1574 // Use _exit instead of exit to avoid races between isolate | 1574 // Use _exit instead of exit to avoid races between isolate |
| 1575 // threads and static destructors. | 1575 // threads and static destructors. |
| 1576 fflush(stdout); | 1576 fflush(stdout); |
| 1577 fflush(stderr); | 1577 fflush(stderr); |
| 1578 _exit(exit_code); | 1578 _exit(exit_code); |
| 1579 |
| 1579 } | 1580 } |
| 1580 | 1581 |
| 1581 | 1582 |
| 1582 struct CounterAndKey { | 1583 struct CounterAndKey { |
| 1583 Counter* counter; | 1584 Counter* counter; |
| 1584 const char* key; | 1585 const char* key; |
| 1585 }; | 1586 }; |
| 1586 | 1587 |
| 1587 | 1588 |
| 1588 inline bool operator<(const CounterAndKey& lhs, const CounterAndKey& rhs) { | 1589 inline bool operator<(const CounterAndKey& lhs, const CounterAndKey& rhs) { |
| (...skipping 1367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2956 } | 2957 } |
| 2957 | 2958 |
| 2958 } // namespace v8 | 2959 } // namespace v8 |
| 2959 | 2960 |
| 2960 | 2961 |
| 2961 #ifndef GOOGLE3 | 2962 #ifndef GOOGLE3 |
| 2962 int main(int argc, char* argv[]) { | 2963 int main(int argc, char* argv[]) { |
| 2963 return v8::Shell::Main(argc, argv); | 2964 return v8::Shell::Main(argc, argv); |
| 2964 } | 2965 } |
| 2965 #endif | 2966 #endif |
| OLD | NEW |