]> git.saurik.com Git - redis.git/commit - src/redis.c
Don't use an alternative stack for SIGSEGV & co.
authorantirez <antirez@gmail.com>
Thu, 26 Apr 2012 14:21:19 +0000 (16:21 +0200)
committerantirez <antirez@gmail.com>
Fri, 27 Apr 2012 09:47:18 +0000 (11:47 +0200)
commita28ab2a92b9b586b06ca75b2deaabae4a2b05fb4
tree64498e766eaf7e06cafecc704834175bd0445ccb
parentb1ee7da75a4191bf1785f598c158b191104fdc38
Don't use an alternative stack for SIGSEGV & co.

This commit reverts most of c575766202773c858be0870c20cd495b722927c3, in
order to use back main stack for signal handling.

The main reason is that otherwise it is completely pointless that we do
a lot of efforts to print the stack trace on crash, and the content of
the stack and registers as well. Using an alternate stack broken this
feature completely.
src/redis.c