hotspot/src/share/vm/utilities/taskqueue.hpp
changeset 4027 1c62fbaf6b68
parent 3607 fa62293fa65c
child 4028 be6959017765
--- a/hotspot/src/share/vm/utilities/taskqueue.hpp	Wed Oct 07 10:09:57 2009 -0400
+++ b/hotspot/src/share/vm/utilities/taskqueue.hpp	Wed Oct 07 09:48:42 2009 -0400
@@ -207,7 +207,7 @@
     // Actually means 0, so do the push.
     uint localBot = _bottom;
     _elems[localBot] = t;
-    _bottom = increment_index(localBot);
+    OrderAccess::release_store(&_bottom, increment_index(localBot));
     return true;
   }
   return false;
@@ -485,7 +485,7 @@
   assert((dirty_n_elems >= 0) && (dirty_n_elems < N), "n_elems out of range.");
   if (dirty_n_elems < max_elems()) {
     _elems[localBot] = t;
-    _bottom = increment_index(localBot);
+    OrderAccess::release_store(&_bottom, increment_index(localBot));
     return true;
   } else {
     return push_slow(t, dirty_n_elems);