| 1009 | } |
| 1010 | |
| 1011 | void bugReportStart(void) { |
| 1012 | pthread_mutex_lock(&bug_report_start_mutex); |
| 1013 | if (bug_report_start == 0) { |
| 1014 | serverLogRaw(LL_WARNING|LL_RAW, |
| 1015 | "\n\n=== REDIS BUG REPORT START: Cut & paste starting from here ===\n"); |
| 1016 | bug_report_start = 1; |
| 1017 | } |
| 1018 | pthread_mutex_unlock(&bug_report_start_mutex); |
| 1019 | } |
| 1020 | |
| 1021 | #ifdef HAVE_BACKTRACE |
| 1022 | static void *getMcontextEip(ucontext_t *uc) { |
no test coverage detected