From: Jan S. <st...@us...> - 2002-05-16 11:37:23
|
Update of /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl In directory usw-pr-cvs1:/tmp/cvs-serv20685 Modified Files: VirtualMachineManagerImpl.java Log Message: ShmemListenConnector removed and one small bug fixed. Index: VirtualMachineManagerImpl.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/VirtualMachineManagerImpl.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** VirtualMachineManagerImpl.java 29 Sep 2001 21:01:33 -0000 1.2 --- VirtualMachineManagerImpl.java 16 May 2002 11:37:20 -0000 1.3 *************** *** 40,44 **** private static final Connector[] allConnectors={new SocketLaunchConnector(), new ShmemLaunchConnector(), new SocketAttachConnector(), new ShmemAttachConnector(), ! new SocketListenConnector(), new ShmemListenConnector()}; /** * All VMs that are connected to the profiler. --- 40,44 ---- private static final Connector[] allConnectors={new SocketLaunchConnector(), new ShmemLaunchConnector(), new SocketAttachConnector(), new ShmemAttachConnector(), ! new SocketListenConnector()}; /** * All VMs that are connected to the profiler. *************** *** 59,63 **** List cons=new LinkedList(); for (int i=0; i<allConnectors.length; i++) { ! if (allConnectors[i].type()==type) { cons.add(allConnectors[i]); } --- 59,63 ---- List cons=new LinkedList(); for (int i=0; i<allConnectors.length; i++) { ! if ((allConnectors[i].type()&type)!=0) { cons.add(allConnectors[i]); } *************** *** 97,100 **** --- 97,103 ---- /* * $Log$ + * Revision 1.3 2002/05/16 11:37:20 stolis + * ShmemListenConnector removed and one small bug fixed. + * * Revision 1.2 2001/09/29 21:01:33 stolis * Plural added in licenses. |