Update of /cvsroot/javaprofiler/library/src/shared
In directory usw-pr-cvs1:/tmp/cvs-serv18629/src/shared
Modified Files:
class.cpp method.cpp thread.cpp
Log Message:
changes in doc
Index: class.cpp
===================================================================
RCS file: /cvsroot/javaprofiler/library/src/shared/class.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** class.cpp 2001/09/02 20:14:22 1.3
--- class.cpp 2001/09/18 22:19:29 1.4
***************
*** 49,53 ****
active = 0;
! prof().activeClasses.removeNoRehash(this);
AllocObject* o;
--- 49,53 ----
active = 0;
! Prof::prof().activeClasses.removeNoRehash(this);
AllocObject* o;
Index: method.cpp
===================================================================
RCS file: /cvsroot/javaprofiler/library/src/shared/method.cpp,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -r1.12 -r1.13
*** method.cpp 2001/09/02 20:14:22 1.12
--- method.cpp 2001/09/18 22:19:29 1.13
***************
*** 50,54 ****
void Method::deactivate() {
! prof().activeMethods.removeNoRehash(this);
AllocThreadMethod* atm = allocThreadMethods.first();
--- 50,54 ----
void Method::deactivate() {
! Prof::prof().activeMethods.removeNoRehash(this);
AllocThreadMethod* atm = allocThreadMethods.first();
Index: thread.cpp
===================================================================
RCS file: /cvsroot/javaprofiler/library/src/shared/thread.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** thread.cpp 2001/09/02 20:14:22 1.8
--- thread.cpp 2001/09/18 22:19:29 1.9
***************
*** 51,56 ****
active = 0;
! prof().activeThreads.removeNoRehash(this);
! prof().sampledThreads.remove(this);
AllocThreadObject* ato = allocThreadObjects.first();
--- 51,56 ----
active = 0;
! Prof::prof().activeThreads.removeNoRehash(this);
! Prof::prof().sampledThreads.remove(this);
AllocThreadObject* ato = allocThreadObjects.first();
|