> 1. DebuggerCallback.quitEvent() not received after
> RemoteThread.cont()
>
> Test case:
> D:\> jdb TestProg
> >stop in TestProg.main
> when breakpoint is hit, issue the cont command.
> i.e. main[1] cont
>
> Result:
> The debugger apparently finishes running the program, but
> nothing is ever printed on the jdb console because quitEvent() is
> never called.
>
> NOTE: I am implementing a debugger using the RemoteDebugger class
and
> other related classes. It is simply easiest to reproduce the bug
> using jdb.
>
> The code I have been using for TestProg is the following (and no,
> there's nothing special about this piece of code):
> class TestProg
> {
> public int mValue;
> static int mStaticValue=8;
> public static void main(String argv[])
> {
> int i;
> int j;
> int arr[]={1,2,3,4,5,6};
> i=2;
> j=i*78;
> arr[5]=56;
> TestProg x=new TestProg();
> x.func();
> }
>
> TestProg()
> {
> mValue=6;
> int j=5;
> }
>
> void func()
> {
> int k=7;
> mValue=6;
> int j=4;
> }
> }
>
>
> RemoteThread.cont()
>
> Test case:
> D:\> jdb TestProg
> >stop in TestProg.main
> when breakpoint is hit, issue the cont command.
> i.e. main[1] cont
>
> Result:
> The debugger apparently finishes running the program, but
> nothing is ever printed on the jdb console because quitEvent() is
> never called.
>
> NOTE: I am implementing a debugger using the RemoteDebugger class
and
> other related classes. It is simply easiest to reproduce the bug
> using jdb.
>
> The code I have been using for TestProg is the following (and no,
> there's nothing special about this piece of code):
> class TestProg
> {
> public int mValue;
> static int mStaticValue=8;
> public static void main(String argv[])
> {
> int i;
> int j;
> int arr[]={1,2,3,4,5,6};
> i=2;
> j=i*78;
> arr[5]=56;
> TestProg x=new TestProg();
> x.func();
> }
>
> TestProg()
> {
> mValue=6;
> int j=5;
> }
>
> void func()
> {
> int k=7;
> mValue=6;
> int j=4;
> }
> }
>
>
- duplicates
-
JDK-4026419 Debugger does not call quitEvent() when program it is debugging exits
-
- Closed
-