OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 18 matching lines...) Expand all Loading... |
29 | 29 |
30 #include "v8.h" | 30 #include "v8.h" |
31 | 31 |
32 #include "platform.h" | 32 #include "platform.h" |
33 #include "top.h" | 33 #include "top.h" |
34 | 34 |
35 static int fatal_error_handler_nesting_depth = 0; | 35 static int fatal_error_handler_nesting_depth = 0; |
36 | 36 |
37 // Contains protection against recursive calls (faults while handling faults). | 37 // Contains protection against recursive calls (faults while handling faults). |
38 extern "C" void V8_Fatal(const char* file, int line, const char* format, ...) { | 38 extern "C" void V8_Fatal(const char* file, int line, const char* format, ...) { |
| 39 fflush(stdout); |
| 40 fflush(stderr); |
39 fatal_error_handler_nesting_depth++; | 41 fatal_error_handler_nesting_depth++; |
40 // First time we try to print an error message | 42 // First time we try to print an error message |
41 if (fatal_error_handler_nesting_depth < 2) { | 43 if (fatal_error_handler_nesting_depth < 2) { |
42 i::OS::PrintError("\n\n#\n# Fatal error in %s, line %d\n# ", file, line); | 44 i::OS::PrintError("\n\n#\n# Fatal error in %s, line %d\n# ", file, line); |
43 va_list arguments; | 45 va_list arguments; |
44 va_start(arguments, format); | 46 va_start(arguments, format); |
45 i::OS::VPrintError(format, arguments); | 47 i::OS::VPrintError(format, arguments); |
46 va_end(arguments); | 48 va_end(arguments); |
47 i::OS::PrintError("\n#\n\n"); | 49 i::OS::PrintError("\n#\n\n"); |
48 } | 50 } |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 | 91 |
90 void API_Fatal(const char* location, const char* format, ...) { | 92 void API_Fatal(const char* location, const char* format, ...) { |
91 i::OS::PrintError("\n#\n# Fatal error in %s\n# ", location); | 93 i::OS::PrintError("\n#\n# Fatal error in %s\n# ", location); |
92 va_list arguments; | 94 va_list arguments; |
93 va_start(arguments, format); | 95 va_start(arguments, format); |
94 i::OS::VPrintError(format, arguments); | 96 i::OS::VPrintError(format, arguments); |
95 va_end(arguments); | 97 va_end(arguments); |
96 i::OS::PrintError("\n#\n\n"); | 98 i::OS::PrintError("\n#\n\n"); |
97 i::OS::Abort(); | 99 i::OS::Abort(); |
98 } | 100 } |
OLD | NEW |