hotspot/src/os_cpu/solaris_sparc/vm/os_solaris_sparc.cpp
changeset 7719 ef138e2849eb
parent 7405 e6fc8d3926f8
child 8106 19106a0203fb
equal deleted inserted replaced
7699:737f9409bd20 7719:ef138e2849eb
   583   sigset_t newset;
   583   sigset_t newset;
   584   sigemptyset(&newset);
   584   sigemptyset(&newset);
   585   sigaddset(&newset, sig);
   585   sigaddset(&newset, sig);
   586   sigprocmask(SIG_UNBLOCK, &newset, NULL);
   586   sigprocmask(SIG_UNBLOCK, &newset, NULL);
   587 
   587 
       
   588   // Determine which sort of error to throw.  Out of swap may signal
       
   589   // on the thread stack, which could get a mapping error when touched.
       
   590   address addr = (address) info->si_addr;
       
   591   if (sig == SIGBUS && info->si_code == BUS_OBJERR && info->si_errno == ENOMEM) {
       
   592     vm_exit_out_of_memory(0, "Out of swap space to map in thread stack.");
       
   593   }
       
   594 
   588   VMError err(t, sig, pc, info, ucVoid);
   595   VMError err(t, sig, pc, info, ucVoid);
   589   err.report_and_die();
   596   err.report_and_die();
   590 
   597 
   591   ShouldNotReachHere();
   598   ShouldNotReachHere();
   592 }
   599 }