hotspot/src/share/vm/runtime/objectMonitor.hpp
changeset 26683 a02753d5a0b2
parent 25633 4cd9c4622c8c
child 26684 d1221849ea3d
--- a/hotspot/src/share/vm/runtime/objectMonitor.hpp	Fri Aug 29 08:14:19 2014 -0700
+++ b/hotspot/src/share/vm/runtime/objectMonitor.hpp	Wed Sep 10 11:48:20 2014 -0600
@@ -141,7 +141,7 @@
     _header       = NULL;
     _count        = 0;
     _waiters      = 0,
-    _recursions   = 0;
+      _recursions   = 0;
     _object       = NULL;
     _owner        = NULL;
     _WaitSet      = NULL;
@@ -158,12 +158,12 @@
   }
 
   ~ObjectMonitor() {
-   // TODO: Add asserts ...
-   // _cxq == 0 _succ == NULL _owner == NULL _waiters == 0
-   // _count == 0 _EntryList  == NULL etc
+    // TODO: Add asserts ...
+    // _cxq == 0 _succ == NULL _owner == NULL _waiters == 0
+    // _count == 0 _EntryList  == NULL etc
   }
 
-private:
+ private:
   void Recycle() {
     // TODO: add stronger asserts ...
     // _cxq == 0 _succ == NULL _owner == NULL _waiters == 0
@@ -180,7 +180,7 @@
     OwnerIsThread  = 0;
   }
 
-public:
+ public:
 
   void*     object() const;
   void*     object_addr();
@@ -225,9 +225,9 @@
   void      ExitEpilog(Thread * Self, ObjectWaiter * Wakee);
   bool      ExitSuspendEquivalent(JavaThread * Self);
   void      post_monitor_wait_event(EventJavaMonitorWait * event,
-                                                   jlong notifier_tid,
-                                                   jlong timeout,
-                                                   bool timedout);
+                                    jlong notifier_tid,
+                                    jlong timeout,
+                                    bool timedout);
 
  private:
   friend class ObjectSynchronizer;
@@ -253,8 +253,8 @@
  private:
   int OwnerIsThread;               // _owner is (Thread *) vs SP/BasicLock
   ObjectWaiter * volatile _cxq;    // LL of recently-arrived threads blocked on entry.
-                                    // The list is actually composed of WaitNodes, acting
-                                    // as proxies for Threads.
+  // The list is actually composed of WaitNodes, acting
+  // as proxies for Threads.
  protected:
   ObjectWaiter * volatile _EntryList;     // Threads blocked on entry or reentry.
  private: