1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2025-01-24 17:20:30 +01:00

aarch64: reduce UNW_TDEP_CURSOR_LEN to 512 on aarch64.

This allows libunwind to work in situations with limited stack size (ie. fibers). 512 is still more than enough for storing the cursor with some slack. (#25)
This commit is contained in:
Stephen Chen 2017-06-20 09:48:55 -07:00 committed by Dave Watson
parent 0e74e583ae
commit 2934cf4052

View file

@ -46,7 +46,7 @@ extern "C" {
relatively cheap and unwind-state copying is relatively rare, so we
want to err on making it rather too big than too small. */
#define UNW_TDEP_CURSOR_LEN 4096
#define UNW_TDEP_CURSOR_LEN 512
typedef uint64_t unw_word_t;
typedef int64_t unw_sword_t;