mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 02:54:35 +02:00
8220570: Additonal trace when native thread creation fails
Added additonal trace when native thread creation fails Reviewed-by: dholmes, goetz
This commit is contained in:
parent
c986cef7ba
commit
0714b75ac4
5 changed files with 30 additions and 0 deletions
|
@ -33,6 +33,7 @@
|
|||
#include "compiler/disassembler.hpp"
|
||||
#include "interpreter/interpreter.hpp"
|
||||
#include "logging/log.hpp"
|
||||
#include "logging/logStream.hpp"
|
||||
#include "memory/allocation.inline.hpp"
|
||||
#include "memory/filemap.hpp"
|
||||
#include "oops/oop.inline.hpp"
|
||||
|
@ -992,6 +993,11 @@ bool os::create_thread(Thread* thread, ThreadType thr_type,
|
|||
} else {
|
||||
log_warning(os, thread)("Failed to start thread - thr_create failed (%s) for attributes: %s.",
|
||||
os::errno_name(status), describe_thr_create_attributes(buf, sizeof(buf), stack_size, flags));
|
||||
// Log some OS information which might explain why creating the thread failed.
|
||||
log_info(os, thread)("Number of threads approx. running in the VM: %d", Threads::number_of_threads());
|
||||
LogStream st(Log(os, thread)::info());
|
||||
os::Posix::print_rlimit_info(&st);
|
||||
os::print_memory_info(&st);
|
||||
}
|
||||
|
||||
if (status != 0) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue