src/jdk.jdi/share/classes/com/sun/tools/jdi/VirtualMachineManagerImpl.java
changeset 50735 2f2af62dfac7
parent 47216 71c04702a3d5
child 54836 e2ed0691ae79
equal deleted inserted replaced
50734:0828a0f6676b 50735:2f2af62dfac7
     1 /*
     1 /*
     2  * Copyright (c) 1998, 2017, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1998, 2018, 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
    50     private LaunchingConnector defaultConnector = null;
    50     private LaunchingConnector defaultConnector = null;
    51     private List<VirtualMachine> targets = new ArrayList<>();
    51     private List<VirtualMachine> targets = new ArrayList<>();
    52     private final ThreadGroup mainGroupForJDI;
    52     private final ThreadGroup mainGroupForJDI;
    53     private ResourceBundle messages = null;
    53     private ResourceBundle messages = null;
    54     private int vmSequenceNumber = 0;
    54     private int vmSequenceNumber = 0;
    55     private static final int majorVersion = 9;
    55     private static final int majorVersion = 11;
    56     private static final int minorVersion = 0;
    56     private static final int minorVersion = 0;
    57 
    57 
    58     private static final Object lock = new Object();
    58     private static final Object lock = new Object();
    59     private static VirtualMachineManagerImpl vmm;
    59     private static VirtualMachineManagerImpl vmm;
    60 
    60