hotspot/src/share/vm/memory/universe.cpp
changeset 46116 94a8161e3509
parent 42650 1f304d0c888b
child 46819 780e16a64a50
--- a/hotspot/src/share/vm/memory/universe.cpp	Thu Jul 27 18:04:47 2017 +0000
+++ b/hotspot/src/share/vm/memory/universe.cpp	Tue Aug 01 11:03:05 2017 +0200
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2017, 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
@@ -497,7 +497,11 @@
 #define assert_pll_ownership() assert_pll_locked(owned_by_self)
 
 oop Universe::reference_pending_list() {
-  assert_pll_ownership();
+  if (Thread::current()->is_VM_thread()) {
+    assert_pll_locked(is_locked);
+  } else {
+    assert_pll_ownership();
+  }
   return _reference_pending_list;
 }