Update of /cvsroot/javaprofiler/library/src/prof
In directory usw-pr-cvs1:/tmp/cvs-serv25109/src/prof
Modified Files:
prof.cpp prof.h
Log Message:
verbose messages added
new "verbose={on|off}" command-line argument
Index: prof.cpp
===================================================================
RCS file: /cvsroot/javaprofiler/library/src/prof/prof.cpp,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -r1.29 -r1.30
*** prof.cpp 15 Apr 2002 21:04:18 -0000 1.29
--- prof.cpp 15 Jul 2002 21:55:12 -0000 1.30
***************
*** 123,127 ****
Prof* Prof::_prof = NULL;
! Prof* Prof::create( char* options, JVMPI_Interface* jvmpi) {
_prof = new Prof( *(new Setup( options)), jvmpi);
--- 123,127 ----
Prof* Prof::_prof = NULL;
! Prof* Prof::create( const char* options, JVMPI_Interface* jvmpi) {
_prof = new Prof( *(new Setup( options)), jvmpi);
Index: prof.h
===================================================================
RCS file: /cvsroot/javaprofiler/library/src/prof/prof.h,v
retrieving revision 1.44
retrieving revision 1.45
diff -C2 -r1.44 -r1.45
*** prof.h 15 Apr 2002 21:04:18 -0000 1.44
--- prof.h 15 Jul 2002 21:55:12 -0000 1.45
***************
*** 1110,1114 ****
** @return pointer to newly created object */
! static Prof* create( char* options, JVMPI_Interface* jvmpi);
/** Destroys profiler Prof object. It is called
--- 1110,1114 ----
** @return pointer to newly created object */
! static Prof* create( const char* options, JVMPI_Interface* jvmpi);
/** Destroys profiler Prof object. It is called
|