mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2025-02-17 02:31:41 +01:00
(STACK_SIZE): Make it 128KB on x86. SIGSTKSZ is far too small.
(Logical change 1.131)
This commit is contained in:
parent
8beb144436
commit
9441e6cb89
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||||
#include <libunwind.h>
|
#include <libunwind.h>
|
||||||
|
|
||||||
#if UNW_TARGET_X86
|
#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
|
#else
|
||||||
# define STACK_SIZE SIGSTKSZ
|
# define STACK_SIZE SIGSTKSZ
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue