< prev index next >

src/share/vm/runtime/orderAccess.hpp

Print this page
rev 8910 : full patch for jfr

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.

@@ -259,12 +259,15 @@
   static jushort  load_acquire(volatile jushort* p);
   static juint    load_acquire(volatile juint*   p);
   static julong   load_acquire(volatile julong*  p);
   static jfloat   load_acquire(volatile jfloat*  p);
   static jdouble  load_acquire(volatile jdouble* p);
+  static bool     load_acquire(const volatile bool* p);
+  static julong   load_acquire(const volatile julong*  p);
 
   static intptr_t load_ptr_acquire(volatile intptr_t*   p);
+  static uintptr_t load_ptr_acquire(const volatile uintptr_t*   p);
   static void*    load_ptr_acquire(volatile void*       p);
   static void*    load_ptr_acquire(const volatile void* p);
 
   static void     release_store(volatile jbyte*   p, jbyte   v);
   static void     release_store(volatile jshort*  p, jshort  v);
< prev index next >