hotspot/src/share/vm/runtime/thread.inline.hpp
changeset 46643 cb5f289ba033
parent 40655 9f644073d3a0
--- a/hotspot/src/share/vm/runtime/thread.inline.hpp	Fri Jul 07 16:49:45 2017 +0000
+++ b/hotspot/src/share/vm/runtime/thread.inline.hpp	Fri Jul 07 23:04:06 2017 +0200
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 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
@@ -66,6 +66,12 @@
 inline void Thread::clear_critical_native_unlock() {
   clear_suspend_flag(_critical_native_unlock);
 }
+inline void Thread::set_trace_flag() {
+  set_suspend_flag(_trace_flag);
+}
+inline void Thread::clear_trace_flag() {
+  clear_suspend_flag(_trace_flag);
+}
 
 inline jlong Thread::cooked_allocated_bytes() {
   jlong allocated_bytes = OrderAccess::load_acquire(&_allocated_bytes);