From: Marek P. <ma...@us...> - 2002-07-17 22:05:59
|
Update of /cvsroot/javaprofiler/library/src/shared In directory usw-pr-cvs1:/tmp/cvs-serv17399/src/shared Modified Files: thread.h Log Message: fixes date represented in milliseconds since 1.1.1970 gc start/end times, thread start/end times Index: thread.h =================================================================== RCS file: /cvsroot/javaprofiler/library/src/shared/thread.h,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -r1.25 -r1.26 *** thread.h 25 May 2002 00:05:06 -0000 1.25 --- thread.h 17 Jul 2002 22:05:56 -0000 1.26 *************** *** 96,103 **** /// time when thread has started ! time_t startTime; /// time when thread has finished (or 0 if still active) ! time_t endTime; /// associated AllocThreadObjects --- 96,103 ---- /// time when thread has started ! jlong startTime; /// time when thread has finished (or 0 if still active) ! jlong endTime; /// associated AllocThreadObjects *************** *** 144,148 **** ** JVMPI_EVENT_MONITOR_CONTENDED_ENTER event. */ ! unsigned long monitorEnterTime; public: --- 144,148 ---- ** JVMPI_EVENT_MONITOR_CONTENDED_ENTER event. */ ! jlong monitorEnterTime; public: |