From: Marek P. <ma...@us...> - 2002-01-31 12:31:05
|
Update of /cvsroot/javaprofiler/library/src/shared In directory usw-pr-cvs1:/tmp/cvs-serv27034/src/shared Modified Files: thread.h Log Message: calltree Index: thread.h =================================================================== RCS file: /cvsroot/javaprofiler/library/src/shared/thread.h,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -r1.23 -r1.24 *** thread.h 2001/11/21 22:31:51 1.23 --- thread.h 2002/01/31 12:31:01 1.24 *************** *** 52,55 **** --- 52,56 ---- #include "../commun/buffer.h" #include "../allocator/allocator.h" + #include "../calltree/callTree.h" /** Thread. This class consists of data gained *************** *** 138,141 **** --- 139,147 ---- unsigned long monitorEnterTime; + + public: + + /// thread's call tree (tree of called methods) + CallTree callTree; private: |