From: Marek P. <ma...@us...> - 2002-01-26 10:19:46
|
Update of /cvsroot/javaprofiler/library In directory usw-pr-cvs1:/tmp/cvs-serv15950 Modified Files: README TODO Log Message: shared memory communication for linux fixed Index: README =================================================================== RCS file: /cvsroot/javaprofiler/library/README,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -r1.32 -r1.33 *** README 2001/11/28 00:02:40 1.32 --- README 2002/01/26 10:19:43 1.33 *************** *** 1,4 **** ! Java Profiling Tool ! alpha version --- 1,4 ---- ! Java Profiling Tool (http://javaprofiler.sourceforge.net/) ! beta version *************** *** 66,70 **** written in Java. Because of stability and standard Sun's JVM is used. ! * JDK 1.4.0 beta3 Nowadays, client's code is in separate CVS module called "jpiimpl". --- 66,70 ---- written in Java. Because of stability and standard Sun's JVM is used. ! * JDK 1.4.0 release candidate Nowadays, client's code is in separate CVS module called "jpiimpl". *************** *** 73,76 **** --- 73,80 ---- Read a README file in src2/ subdirectory before compiling. + Be sure you use the latest version of JVM mainly when using together + with dynamic profiler library. Elder versions of JVM's JVMPI are not + stable and dynamic profiler library may not function. + 1.3 Additional tools *************** *** 156,160 **** * GNU C/C++ 3.0.2 (gcc.gnu.org) [for free] ! * JDK 1.4.0 beta3 (java.sun.com) [for free] * Doxygen 1.2.12 (www.doxygen.org) [for free] --- 160,164 ---- * GNU C/C++ 3.0.2 (gcc.gnu.org) [for free] ! * JDK 1.4.0 release candidate (java.sun.com) [for free] * Doxygen 1.2.12 (www.doxygen.org) [for free] *************** *** 318,324 **** --- 322,341 ---- command-line arguments: + $ java -Xrunprofiler:arg1=val1,arg2=val2,... <Java program> + An example: + + + $ java -Xrunprofiler:commun_type=socket,connect_mode=server Test + + + So, Java program called "Test" will be profiled using dynamic profiler + library libprofiler.so (on Unix) or profiler.dll (on Win32) and + the communication with library is based on sockets where this library + participates as server part. + + Argument Value Description ----------------------------------------------------------------------- *************** *** 423,427 **** 7. AUTHORS ! * Marek Przeczek, 2001 * Petr Luner, 2001 ma...@us... lu...@us... --- 440,444 ---- 7. AUTHORS ! * Marek Przeczek, 2001, 2002 * Petr Luner, 2001, 2002 ma...@us... lu...@us... Index: TODO =================================================================== RCS file: /cvsroot/javaprofiler/library/TODO,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** TODO 2001/12/09 16:49:32 1.2 --- TODO 2002/01/26 10:19:43 1.3 *************** *** 1,3 **** ! 2001-12-03 This _MUST_ really be done in near future: --- 1,3 ---- ! 2002-01-26 This _MUST_ really be done in near future: |