class com.sun.tools.jdi.TargetVM$EventController extends java.lang.Thread
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.sun.tools.jdi.TargetVM$EventController
  super_class: java.lang.Thread
{
  com.sun.tools.jdi.VirtualMachineImpl vm;
    descriptor: Lcom/sun/tools/jdi/VirtualMachineImpl;
    flags: (0x0000) 

  int controlRequest;
    descriptor: I
    flags: (0x0000) 

  void <init>(com.sun.tools.jdi.VirtualMachineImpl);
    descriptor: (Lcom/sun/tools/jdi/VirtualMachineImpl;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.tools.jdi.TargetVM$EventController this
        start local 1 // com.sun.tools.jdi.VirtualMachineImpl vm
         0: .line 331
            aload 0 /* this */
            aload 1 /* vm */
            invokevirtual com.sun.tools.jdi.VirtualMachineImpl.threadGroupForJDI:()Ljava/lang/ThreadGroup;
            ldc "JDI Event Control Thread"
            invokespecial java.lang.Thread.<init>:(Ljava/lang/ThreadGroup;Ljava/lang/String;)V
         1: .line 328
            aload 0 /* this */
            iconst_0
            putfield com.sun.tools.jdi.TargetVM$EventController.controlRequest:I
         2: .line 332
            aload 0 /* this */
            aload 1 /* vm */
            putfield com.sun.tools.jdi.TargetVM$EventController.vm:Lcom/sun/tools/jdi/VirtualMachineImpl;
         3: .line 333
            aload 0 /* this */
            iconst_1
            invokevirtual com.sun.tools.jdi.TargetVM$EventController.setDaemon:(Z)V
         4: .line 334
            aload 0 /* this */
            bipush 7
            invokevirtual com.sun.tools.jdi.TargetVM$EventController.setPriority:(I)V
         5: .line 335
            aload 0 /* this */
            invokespecial java.lang.Thread.start:()V
         6: .line 336
            return
        end local 1 // com.sun.tools.jdi.VirtualMachineImpl vm
        end local 0 // com.sun.tools.jdi.TargetVM$EventController this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/sun/tools/jdi/TargetVM$EventController;
            0    7     1    vm  Lcom/sun/tools/jdi/VirtualMachineImpl;
    MethodParameters:
      Name  Flags
      vm    

  synchronized void hold();
    descriptor: ()V
    flags: (0x0020) ACC_SYNCHRONIZED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.tools.jdi.TargetVM$EventController this
         0: .line 339
            aload 0 /* this */
            dup
            getfield com.sun.tools.jdi.TargetVM$EventController.controlRequest:I
            iconst_1
            iadd
            putfield com.sun.tools.jdi.TargetVM$EventController.controlRequest:I
         1: .line 340
            aload 0 /* this */
            invokevirtual java.lang.Object.notifyAll:()V
         2: .line 341
            return
        end local 0 // com.sun.tools.jdi.TargetVM$EventController this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/tools/jdi/TargetVM$EventController;

  synchronized void release();
    descriptor: ()V
    flags: (0x0020) ACC_SYNCHRONIZED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.tools.jdi.TargetVM$EventController this
         0: .line 344
            aload 0 /* this */
            dup
            getfield com.sun.tools.jdi.TargetVM$EventController.controlRequest:I
            iconst_1
            isub
            putfield com.sun.tools.jdi.TargetVM$EventController.controlRequest:I
         1: .line 345
            aload 0 /* this */
            invokevirtual java.lang.Object.notifyAll:()V
         2: .line 346
            return
        end local 0 // com.sun.tools.jdi.TargetVM$EventController this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/tools/jdi/TargetVM$EventController;

  public void run();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // com.sun.tools.jdi.TargetVM$EventController this
         0: .line 351
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         1: .line 352
            goto 5
         2: .line 353
      StackMap locals: com.sun.tools.jdi.TargetVM$EventController top com.sun.tools.jdi.TargetVM$EventController
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.lang.Object.wait:()V
         3: goto 5
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
         4: pop
         5: .line 352
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.tools.jdi.TargetVM$EventController.controlRequest:I
            ifeq 2
         6: .line 355
            aload 0 /* this */
            getfield com.sun.tools.jdi.TargetVM$EventController.controlRequest:I
            istore 1 /* currentRequest */
        start local 1 // int currentRequest
         7: .line 356
            aload 0 /* this */
            iconst_0
            putfield com.sun.tools.jdi.TargetVM$EventController.controlRequest:I
         8: .line 351
            aload 2
            monitorexit
         9: goto 12
        end local 1 // int currentRequest
      StackMap locals:
      StackMap stack: java.lang.Throwable
        10: aload 2
            monitorexit
        11: athrow
        start local 1 // int currentRequest
        12: .line 359
      StackMap locals: com.sun.tools.jdi.TargetVM$EventController int
      StackMap stack:
            iload 1 /* currentRequest */
            ifle 15
        13: .line 360
            aload 0 /* this */
            getfield com.sun.tools.jdi.TargetVM$EventController.vm:Lcom/sun/tools/jdi/VirtualMachineImpl;
            invokestatic com.sun.tools.jdi.JDWP$VirtualMachine$HoldEvents.process:(Lcom/sun/tools/jdi/VirtualMachineImpl;)Lcom/sun/tools/jdi/JDWP$VirtualMachine$HoldEvents;
            pop
        14: .line 361
            goto 0
        15: .line 362
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.tools.jdi.TargetVM$EventController.vm:Lcom/sun/tools/jdi/VirtualMachineImpl;
            invokestatic com.sun.tools.jdi.JDWP$VirtualMachine$ReleaseEvents.process:(Lcom/sun/tools/jdi/VirtualMachineImpl;)Lcom/sun/tools/jdi/JDWP$VirtualMachine$ReleaseEvents;
            pop
        16: .line 364
            goto 0
      StackMap locals:
      StackMap stack: com.sun.tools.jdi.JDWPException
        17: astore 2 /* e */
        start local 2 // com.sun.tools.jdi.JDWPException e
        18: .line 369
            aload 2 /* e */
            invokevirtual com.sun.tools.jdi.JDWPException.toJDIException:()Ljava/lang/RuntimeException;
            getstatic java.lang.System.err:Ljava/io/PrintStream;
            invokevirtual java.lang.RuntimeException.printStackTrace:(Ljava/io/PrintStream;)V
        end local 2 // com.sun.tools.jdi.JDWPException e
        end local 1 // int currentRequest
        19: .line 349
            goto 0
        end local 0 // com.sun.tools.jdi.TargetVM$EventController this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   20     0            this  Lcom/sun/tools/jdi/TargetVM$EventController;
            7   10     1  currentRequest  I
           12   19     1  currentRequest  I
           18   19     2               e  Lcom/sun/tools/jdi/JDWPException;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.InterruptedException
           1     9      10  any
          10    11      10  any
          12    16      17  Class com.sun.tools.jdi.JDWPException
}
SourceFile: "TargetVM.java"
NestHost: com.sun.tools.jdi.TargetVM
InnerClasses:
  VirtualMachine = com.sun.tools.jdi.JDWP$VirtualMachine of com.sun.tools.jdi.JDWP
  HoldEvents = com.sun.tools.jdi.JDWP$VirtualMachine$HoldEvents of com.sun.tools.jdi.JDWP$VirtualMachine
  ReleaseEvents = com.sun.tools.jdi.JDWP$VirtualMachine$ReleaseEvents of com.sun.tools.jdi.JDWP$VirtualMachine
  private EventController = com.sun.tools.jdi.TargetVM$EventController of com.sun.tools.jdi.TargetVM