From: Pavel V. <va...@us...> - 2002-08-08 00:21:31
|
Update of /cvsroot/javaprofiler/test/module In directory usw-pr-cvs1:/tmp/cvs-serv22640 Modified Files: TestAllocHistView.java Log Message: no message Index: TestAllocHistView.java =================================================================== RCS file: /cvsroot/javaprofiler/test/module/TestAllocHistView.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** TestAllocHistView.java 27 Jul 2002 22:29:03 -0000 1.7 --- TestAllocHistView.java 8 Aug 2002 00:21:29 -0000 1.8 *************** *** 174,179 **** } public static void main( String[] arg) { // let's run the test ! TestAllocHistView test = new TestAllocHistView( true, true ); test.show(); --- 174,186 ---- } public static void main( String[] arg) { + boolean useShmem = true;//false; + + //if (arg.length >= 1 && (arg[0].compareTo("shmem")==0)) { + // useShmem = true; + // System.out.println("Using shared memory."); + //} + // let's run the test ! TestAllocHistView test = new TestAllocHistView( true, useShmem ); test.show(); |