hotspot/src/os_cpu/linux_sparc/vm/os_linux_sparc.cpp
changeset 5403 6b0dd9c75dde
parent 670 ddf3e9583f2f
child 5547 f4b087cbb361
equal deleted inserted replaced
5402:c51fd0c1d005 5403:6b0dd9c75dde
   151     // JVM needs to know exact stack location, abort if it fails
   151     // JVM needs to know exact stack location, abort if it fails
   152     if (rslt != 0) {
   152     if (rslt != 0) {
   153       if (rslt == ENOMEM) {
   153       if (rslt == ENOMEM) {
   154         vm_exit_out_of_memory(0, "pthread_getattr_np");
   154         vm_exit_out_of_memory(0, "pthread_getattr_np");
   155       } else {
   155       } else {
   156         fatal1("pthread_getattr_np failed with errno = %d", rslt);
   156         fatal(err_msg("pthread_getattr_np failed with errno = %d", rslt));
   157       }
   157       }
   158     }
   158     }
   159 
   159 
   160     if (pthread_attr_getstack(&attr, (void**)bottom, size) != 0) {
   160     if (pthread_attr_getstack(&attr, (void**)bottom, size) != 0) {
   161       fatal("Can not locate current stack attributes!");
   161       fatal("Can not locate current stack attributes!");