< prev index next >

src/hotspot/share/runtime/timer.hpp

Print this page

        

@@ -27,11 +27,11 @@
 
 #include "utilities/globalDefinitions.hpp"
 
 // Timers for simple measurement.
 
-class elapsedTimer VALUE_OBJ_CLASS_SPEC {
+class elapsedTimer {
   friend class VMStructs;
  private:
   jlong _counter;
   jlong _start_counter;
   bool  _active;

@@ -48,11 +48,11 @@
   jlong active_ticks() const;
   bool  is_active() const { return _active; }
 };
 
 // TimeStamp is used for recording when an event took place.
-class TimeStamp VALUE_OBJ_CLASS_SPEC {
+class TimeStamp {
  private:
   jlong _counter;
  public:
   TimeStamp()  { _counter = 0; }
   void clear() { _counter = 0; }
< prev index next >