Also force SIGSEGV without HAVE_BACKTRACE

This commit is contained in:
Pieter Noordhuis 2012-02-21 10:05:46 -08:00
parent 7c96b467c1
commit 57be47758e

View File

@ -314,8 +314,8 @@ void _redisAssert(char *estr, char *file, int line) {
server.assert_file = file;
server.assert_line = line;
redisLog(REDIS_WARNING,"(forcing SIGSEGV to print the bug report.)");
*((char*)-1) = 'x';
#endif
*((char*)-1) = 'x';
}
void _redisAssertPrintClientInfo(redisClient *c) {
@ -384,9 +384,9 @@ void _redisPanic(char *msg, char *file, int line) {
redisLog(REDIS_WARNING,"Guru Meditation: %s #%s:%d",msg,file,line);
#ifdef HAVE_BACKTRACE
redisLog(REDIS_WARNING,"(forcing SIGSEGV in order to print the stack trace)");
#endif
redisLog(REDIS_WARNING,"------------------------------------------------");
*((char*)-1) = 'x';
#endif
}
void bugReportStart(void) {