hotspot/src/os_cpu/linux_zero/vm/atomic_linux_zero.hpp
changeset 46523 cbcc0ebaa044
parent 40655 9f644073d3a0
child 46958 a13bd8c6b7a2
--- a/hotspot/src/os_cpu/linux_zero/vm/atomic_linux_zero.hpp	Mon Jun 05 13:13:38 2017 -0400
+++ b/hotspot/src/os_cpu/linux_zero/vm/atomic_linux_zero.hpp	Mon Jun 05 19:07:47 2017 -0400
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2003, 2017, Oracle and/or its affiliates. All rights reserved.
  * Copyright 2007, 2008, 2011, 2015, Red Hat, Inc.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
@@ -310,7 +310,7 @@
                               order);
 }
 
-inline jlong Atomic::load(volatile jlong* src) {
+inline jlong Atomic::load(const volatile jlong* src) {
   volatile jlong dest;
   os::atomic_copy64(src, &dest);
   return dest;