Breakpad, a crash reporter, from Google.
Original home: https://chromium.googlesource.com/breakpad/breakpad/
Révision | 550c6227bbd46d364495240913900248e9d7be44 (tree) |
---|---|
l'heure | 2017-11-03 11:53:56 |
Auteur | Adam Harrison <adamharrison@goog...> |
Commiter | Mark Mentovai |
Don’t set exit_after_write to false for tvOS.
On tvOS, the app fails to shutdown after write.
Allow exit_after_write to be false for tvOS in order to force an exit() after write.
Change-Id: Ib2e1e1d03264a2972f5607b3070f4a6287aa0a98
Reviewed-on: https://chromium-review.googlesource.com/752071
Reviewed-by: Mark Mentovai <mark@chromium.org>
@@ -124,7 +124,9 @@ bool ExceptionHandler::WriteMinidumpWithException( | ||
124 | 124 | bool report_current_thread) { |
125 | 125 | bool result = false; |
126 | 126 | |
127 | +#if !TARGET_OS_TV | |
127 | 128 | exit_after_write = false; |
129 | +#endif // !TARGET_OS_TV | |
128 | 130 | |
129 | 131 | if (directCallback_) { |
130 | 132 | if (directCallback_(callback_context_, |