47 lines
831 B
Text
47 lines
831 B
Text
|
/**
|
||
|
* PANDA 3D SOFTWARE
|
||
|
* Copyright (c) Carnegie Mellon University. All rights reserved.
|
||
|
*
|
||
|
* All use of this software is subject to the terms of the revised BSD
|
||
|
* license. You should have received a copy of this license along
|
||
|
* with this source code in a file named "LICENSE."
|
||
|
*
|
||
|
* @file pStatTimer.I
|
||
|
* @author drose
|
||
|
* @date 2000-07-11
|
||
|
*/
|
||
|
|
||
|
#ifdef DO_PSTATS
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
INLINE PStatTimer::
|
||
|
PStatTimer(PStatCollector &collector) :
|
||
|
_collector(collector),
|
||
|
_thread(PStatClient::get_global_pstats()->get_current_thread())
|
||
|
{
|
||
|
_collector.start(_thread);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
INLINE PStatTimer::
|
||
|
PStatTimer(PStatCollector &collector, Thread *current_thread) :
|
||
|
_collector(collector),
|
||
|
_thread(current_thread)
|
||
|
{
|
||
|
_collector.start(_thread);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
INLINE PStatTimer::
|
||
|
~PStatTimer() {
|
||
|
_collector.stop(_thread);
|
||
|
}
|
||
|
|
||
|
#endif
|