mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8144219: [posix] Remove redundant code around os::print_siginfo()
For posix platforms, consolidate os::print_siginfo() in os_posix.cpp and remove cds fault special handling Reviewed-by: dholmes, simonis
This commit is contained in:
parent
9c775566e5
commit
6996edcbb5
12 changed files with 84 additions and 93 deletions
|
@ -597,6 +597,14 @@ void VMError::report(outputStream* st, bool _verbose) {
|
|||
st->cr();
|
||||
}
|
||||
|
||||
STEP(245, "(CDS archive access warning)" )
|
||||
|
||||
// Print an explicit hint if we crashed on access to the CDS archive.
|
||||
if (_verbose && _siginfo) {
|
||||
check_failing_cds_access(st, _siginfo);
|
||||
st->cr();
|
||||
}
|
||||
|
||||
STEP(250, "(printing register info)")
|
||||
|
||||
// decode register contents if possible
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue