Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4039813

DebuggerCallback.quitEvent() not received after RemoteThread.cont()

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P1 P1
    • None
    • 1.1.1, 1.1.2
    • core-svc
    • generic
    • generic

      > 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;
      > }
      > }
      >
      >

            rfield Robert Field (Inactive)
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: