jdk/src/jdk.jdi/share/classes/com/sun/tools/jdi/VirtualMachineManagerImpl.java
changeset 36511 9d0388c6b336
parent 25859 3317bb8137f4
child 45714 1820d351198d
equal deleted inserted replaced
36510:043f1af70518 36511:9d0388c6b336
     1 /*
     1 /*
     2  * Copyright (c) 1998, 2008, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1998, 2016, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    45     private LaunchingConnector defaultConnector = null;
    45     private LaunchingConnector defaultConnector = null;
    46     private List<VirtualMachine> targets = new ArrayList<VirtualMachine>();
    46     private List<VirtualMachine> targets = new ArrayList<VirtualMachine>();
    47     private final ThreadGroup mainGroupForJDI;
    47     private final ThreadGroup mainGroupForJDI;
    48     private ResourceBundle messages = null;
    48     private ResourceBundle messages = null;
    49     private int vmSequenceNumber = 0;
    49     private int vmSequenceNumber = 0;
    50     private static final int majorVersion = 1;
    50     private static final int majorVersion = 9;
    51     private static final int minorVersion = 8;
    51     private static final int minorVersion = 0;
    52 
    52 
    53     private static final Object lock = new Object();
    53     private static final Object lock = new Object();
    54     private static VirtualMachineManagerImpl vmm;
    54     private static VirtualMachineManagerImpl vmm;
    55 
    55 
    56     public static VirtualMachineManager virtualMachineManager() {
    56     public static VirtualMachineManager virtualMachineManager() {