@brief Default application crash handler @detail This function writes log using 'default' logger, prints stack trace for GCC based compilers and aborts program.
| 2763 | /// |
| 2764 | /// @detail This function writes log using 'default' logger, prints stack trace for GCC based compilers and aborts program. |
| 2765 | static inline void defaultCrashHandler(int sig) { |
| 2766 | base::debug::logCrashReason(sig, true, Level::Fatal, base::consts::kDefaultLoggerId); |
| 2767 | base::debug::crashAbort(sig); |
| 2768 | } |
| 2769 | |
| 2770 | // CrashHandler |
| 2771 |
nothing calls this directly
no test coverage detected