| 18 | const int opt_syslog = LOG_ERR | LOG_PID | LOG_CONS; |
| 19 | |
| 20 | void |
| 21 | fatal_abort(const std::string& message) |
| 22 | { |
| 23 | fprintf(stderr, "FATAL_COREDUMP: %s\n", message.c_str()); |
| 24 | syslog(opt_syslog, "FATAL_COREDUMP: %s", message.c_str()); |
| 25 | abort(); |
| 26 | } |
| 27 | |
| 28 | }; |
| 29 |