The debugger now reports "The application exited" even when the
application is never actually ran, upon exiting the JDB.
This is a subtle JDB changes from the
Beta4 build to the latest FCS-C build (1.2).
Specifically here is one case below:
FCS-C:
kamehameha1[72] jdb
Initializing jdb...
> load ArithmeticTest
0xaa:class(ArithmeticTest)
> stop at ArithmeticTest:24
Breakpoint set at ArithmeticTest:24
> clear
Current breakpoints set:
ArithmeticTest:24
> clear ArithmeticTest:24
Breakpoint cleared at ArithmeticTest: 24
> clear
No breakpoints set.
> exit
<---Extra line here
The application exited <---Message about the app exiting
kamehameha1[73]
Beta4-K:
kamehameha1[74] jdb
Initializing jdb...
> load ArithmeticTest
0x9f:class(ArithmeticTest)
> stop at ArithmeticTest:24
Breakpoint set at ArithmeticTest:24
> clear
Current breakpoints set:
ArithmeticTest:24
> clear ArithmeticTest:24
Breakpoint cleared at ArithmeticTest: 24
> clear
No breakpoints set.
> exit <---No extra line here or message
kamehameha1[75]
- relates to
-
JDK-4153995 Thread.stop warning message on quit
-
- Closed
-