hotspot/src/share/vm/runtime/thread.cpp
changeset 22810 3a4dae5224c7
parent 18025 b7bcf7497f93
child 22812 40e74d1a401a
equal deleted inserted replaced
22809:8f0522f038d3 22810:3a4dae5224c7
   310 }
   310 }
   311 
   311 
   312 void Thread::record_stack_base_and_size() {
   312 void Thread::record_stack_base_and_size() {
   313   set_stack_base(os::current_stack_base());
   313   set_stack_base(os::current_stack_base());
   314   set_stack_size(os::current_stack_size());
   314   set_stack_size(os::current_stack_size());
       
   315   if (is_Java_thread()) {
       
   316     ((JavaThread*) this)->set_stack_overflow_limit();
       
   317   }
   315   // CR 7190089: on Solaris, primordial thread's stack is adjusted
   318   // CR 7190089: on Solaris, primordial thread's stack is adjusted
   316   // in initialize_thread(). Without the adjustment, stack size is
   319   // in initialize_thread(). Without the adjustment, stack size is
   317   // incorrect if stack is set to unlimited (ulimit -s unlimited).
   320   // incorrect if stack is set to unlimited (ulimit -s unlimited).
   318   // So far, only Solaris has real implementation of initialize_thread().
   321   // So far, only Solaris has real implementation of initialize_thread().
   319   //
   322   //