src/os_cpu/solaris_sparc/vm/os_solaris_sparc.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hs25_8011661 Cdiff src/os_cpu/solaris_sparc/vm/os_solaris_sparc.cpp

src/os_cpu/solaris_sparc/vm/os_solaris_sparc.cpp

Print this page

        

*** 589,599 **** // Determine which sort of error to throw. Out of swap may signal // on the thread stack, which could get a mapping error when touched. address addr = (address) info->si_addr; if (sig == SIGBUS && info->si_code == BUS_OBJERR && info->si_errno == ENOMEM) { ! vm_exit_out_of_memory(0, "Out of swap space to map in thread stack."); } VMError err(t, sig, pc, info, ucVoid); err.report_and_die(); --- 589,599 ---- // Determine which sort of error to throw. Out of swap may signal // on the thread stack, which could get a mapping error when touched. address addr = (address) info->si_addr; if (sig == SIGBUS && info->si_code == BUS_OBJERR && info->si_errno == ENOMEM) { ! vm_exit_out_of_memory(0, OOM_MMAP_ERROR, "Out of swap space to map in thread stack."); } VMError err(t, sig, pc, info, ucVoid); err.report_and_die();
src/os_cpu/solaris_sparc/vm/os_solaris_sparc.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File