< prev index next >

src/hotspot/share/runtime/abstract_vm_version.hpp

Print this page
*** 1,7 ***
  /*
!  * Copyright (c) 1997, 2023, 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.
--- 1,7 ---
  /*
!  * Copyright (c) 1997, 2024, 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.

*** 188,9 ***
--- 188,12 ---
    static bool supports_fast_class_init_checks() { return false; }
  
    // Does platform support stack watermark barriers for concurrent stack processing?
    constexpr static bool supports_stack_watermark_barrier() { return false; }
  
+   // Is recursive lightweight locking implemented for this platform?
+   constexpr static bool supports_recursive_lightweight_locking() { return false; }
+ 
    static bool print_matching_lines_from_file(const char* filename, outputStream* st, const char* keywords_to_match[]);
  };
  
  #endif // SHARE_RUNTIME_ABSTRACT_VM_VERSION_HPP
< prev index next >