Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2177121 | 7 | Tom Rodriguez | P3 | Closed | Fixed | b27 |
JDK-2174887 | 6u14 | Tom Rodriguez | P3 | Closed | Fixed | b01 |
The -Xprintflags is broken.
See comments for further description.
This also causes
% jinfo -flags <flag>
to crash the target jvm when <flag> is an argument which happens to be
a string variable that is empty in the target jvm.
Here's a script from ###@###.### that illustrates
the crash:-
#!/bin/csh
set CRASH_JVM = "\
CompileCommand \
CompileCommandFile \
ErrorFile \
HPILibPath \
PerfDataSaveFile \
"
foreach i ( $CRASH_JVM )
if ( $i != "" ) then
jinfo -flag $i $1
endif
end
See comments for further description.
This also causes
% jinfo -flags <flag>
to crash the target jvm when <flag> is an argument which happens to be
a string variable that is empty in the target jvm.
Here's a script from ###@###.### that illustrates
the crash:-
#!/bin/csh
set CRASH_JVM = "\
CompileCommand \
CompileCommandFile \
ErrorFile \
HPILibPath \
PerfDataSaveFile \
"
foreach i ( $CRASH_JVM )
if ( $i != "" ) then
jinfo -flag $i $1
endif
end
- backported by
-
JDK-2174887 The -Xprintflags causes the VM to segv
-
- Closed
-
-
JDK-2177121 The -Xprintflags causes the VM to segv
-
- Closed
-
- duplicates
-
JDK-6642760 SEGV crash, -Xprintflags, jvm.dll!Flag::print_on() Line 72
-
- Closed
-