| 1117 | } |
| 1118 | |
| 1119 | void bugReportStart(void) { |
| 1120 | pthread_mutex_lock(&bug_report_start_mutex); |
| 1121 | if (bug_report_start == 0) { |
| 1122 | serverLogRaw(LL_WARNING|LL_RAW, |
| 1123 | "\n\n=== KEYDB BUG REPORT START: Cut & paste starting from here ===\n"); |
| 1124 | bug_report_start = 1; |
| 1125 | } |
| 1126 | pthread_mutex_unlock(&bug_report_start_mutex); |
| 1127 | } |
| 1128 | |
| 1129 | #ifdef HAVE_BACKTRACE |
| 1130 | static void *getMcontextEip(ucontext_t *uc) { |
no test coverage detected