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

stepping 'next' in jdb breakpoints goes out of order

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P3 P3
    • None
    • 1.1
    • tools
    • None
    • unknown
    • generic

      import java.lang.System;
       
      class myclass {
          public static void main(String argv[]) { // line 4
            System.out.println("hello"); // line 5
          }
      }

      iwww% javac -g myclass.java
      iwww% jdb myclass
      Initializing jdb...
      0xee70cf18:class(myclass)
      stop at myclass:5
      > Breakpoint set at myclass:5
      run
      > run myclass
       
      Breakpoint hit: running ...
      myclass.main (myclass:5)
      main[1] main[1] next // *
      main[1]
      Breakpoint hit: myclass.main (myclass:5) // *
      main[1] clear myclass:5 // **
      Breakpoint cleared at myclass: 5
      main[1] next // ***
      hello
       
      Breakpoint hit: main[1] myclass.main (myclass:4) // ***
      main[1] quit

      -------------------------------------------------------

      The lines marked *** show that the program first hits the
      breakpoint at line 5, then after "next" hits one that it
      says is at line 4. This is out of order. This bug was
      in JDK 1.0.2 and is still in 1.1.

            jrose John Rose
            mchansunw Mei Chan (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: