< prev index next >

src/os/linux/vm/os_linux.cpp

Print this page
rev 8669 : 8197429: Increased stack guard causes segfaults on x86-32
Reviewed-by: dholmes

*** 672,681 **** --- 672,685 ---- assert(p != NULL && p <= (volatile char *)bottom, "alloca problem?"); p[0] = '\0'; } } + void os::Linux::expand_stack_to(address bottom) { + _expand_stack_to(bottom); + } + bool os::Linux::manually_expand_stack(JavaThread * t, address addr) { assert(t!=NULL, "just checking"); assert(t->osthread()->expanding_stack(), "expand should be set"); assert(t->stack_base() != NULL, "stack_base was not initialized");
< prev index next >