coverity[+kill]
| 223 | |
| 224 | // coverity[+kill] |
| 225 | void |
| 226 | Abort (int errorcode, bool backtrace) |
| 227 | { |
| 228 | if (backtrace && amrex::system::signal_handling) { |
| 229 | BLBackTrace::handler(errorcode); |
| 230 | } else { |
| 231 | MPI_Abort(Communicator(), errorcode); |
| 232 | } |
| 233 | } |
| 234 | |
| 235 | const char* |
| 236 | ErrorString (int errorcode) |