]> git.saurik.com Git - redis.git/commit
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>
Thu, 26 Apr 2012 14:21:19 +0000 (16:21 +0200)
commit3ada43e732678e1f1ed0830c7407eef99ad63c46
tree786c659512ab2b39d063222f8423e3b9b540775b
parent28ccb53008eed402999d85aa0ac66714b9f5bd03
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