mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-22 15:47:37 +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>
|
||||
|
||||
#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
|
||||
|
|
Loading…
Reference in a new issue