src/os_cpu/linux_sparc/vm/os_linux_sparc.cpp

changeset 1845
f03d0a26bf83
parent 631
d1605aabd0a1
child 1907
c18cbe5936b8
equal deleted inserted replaced
1844:cff162798819 1845:f03d0a26bf83
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!");

mercurial