1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-16 15:01:45 +02:00

(STACK_SIZE): Make it 128KB on x86. SIGSTKSZ is far too small.

(Logical change 1.131)
This commit is contained in:
hp.com!davidm 2003-11-27 07:17:47 +00:00
parent 8beb144436
commit 9441e6cb89

View file

@ -43,7 +43,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
#include <libunwind.h>
#if UNW_TARGET_X86
# define STACK_SIZE (2*SIGSTKSZ) /* On x86, SIGSTKSZ is too small */
# define STACK_SIZE (128*1024) /* On x86, SIGSTKSZ is too small */
#else
# define STACK_SIZE SIGSTKSZ
#endif