From 0f9eda49c1ffe73570d0d9db36e01e77247a49df Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Wed, 6 Jan 2010 21:55:18 +0000 Subject: [PATCH] disable unwind cache for now svn: r17514 --- src/mzscheme/src/unwind/libunwind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mzscheme/src/unwind/libunwind.c b/src/mzscheme/src/unwind/libunwind.c index 3991bb730f..8c286d9ac0 100644 --- a/src/mzscheme/src/unwind/libunwind.c +++ b/src/mzscheme/src/unwind/libunwind.c @@ -2428,7 +2428,7 @@ int unw_init_local (unw_cursor_t *cursor, ucontext_t *uc) if (!unw_local_addr_space) { unw_local_addr_space = (unw_addr_space_t)malloc(sizeof(struct unw_addr_space)); memset(unw_local_addr_space, 0, sizeof(unw_local_addr_space)); - unw_local_addr_space->caching_policy = UNW_CACHE_GLOBAL; + /* unw_local_addr_space->caching_policy = UNW_CACHE_GLOBAL; */ } c->dwarf.as = unw_local_addr_space;