src/hotspot/share/runtime/objectMonitor.hpp
changeset 51702 ebd5b1ad971a
parent 51258 2ce72467c4e8
child 51860 54aafb3ba9ab
--- a/src/hotspot/share/runtime/objectMonitor.hpp	Wed Sep 05 18:14:45 2018 -0700
+++ b/src/hotspot/share/runtime/objectMonitor.hpp	Tue Sep 11 13:54:34 2018 -0700
@@ -321,21 +321,4 @@
   bool      ExitSuspendEquivalent(JavaThread * Self);
 };
 
-#undef TEVENT
-#define TEVENT(nom) { if (SyncVerbose) FEVENT(nom); }
-
-#define FEVENT(nom)                             \
-  {                                             \
-    static volatile int ctr = 0;                \
-    int v = ++ctr;                              \
-    if ((v & (v - 1)) == 0) {                   \
-      tty->print_cr("INFO: " #nom " : %d", v);  \
-      tty->flush();                             \
-    }                                           \
-  }
-
-#undef  TEVENT
-#define TEVENT(nom) {;}
-
-
 #endif // SHARE_VM_RUNTIME_OBJECTMONITOR_HPP