diff src/share/vm/services/attachListener.cpp @ 14341:ad3f8397fe37

7182040: volano29 limited by os resource on Linux - need better diagnostic message Summary: Changed message to "unable to create native thread: possibly out of memory or process/resource limits reached" Reviewed-by: dholmes, sla
author iklam
date Tue, 11 Feb 2014 08:43:17 -0800
parents 44315152d434
children 4ca6dc0799b6
line wrap: on
line diff
--- a/src/share/vm/services/attachListener.cpp	Mon Feb 10 17:49:17 2014 +0100
+++ b/src/share/vm/services/attachListener.cpp	Tue Feb 11 08:43:17 2014 -0800
@@ -532,7 +532,7 @@
     // Check that thread and osthread were created
     if (listener_thread == NULL || listener_thread->osthread() == NULL) {
       vm_exit_during_initialization("java.lang.OutOfMemoryError",
-                                    "unable to create new native thread");
+                                    os::native_thread_creation_failed_msg());
     }
 
     java_lang_Thread::set_thread(thread_oop(), listener_thread);