JDK-8247870 : Change internal jfr recorder write__klass__xxx functions to be static
  • Type: Enhancement
  • Component: hotspot
  • Sub-Component: jfr
  • Affected Version: 16
  • Priority: P4
  • Status: Open
  • Resolution: Unresolved
  • Submitted: 2020-06-18
  • Updated: 2021-01-07
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other
tbdUnresolved
Related Reports
Blocks :  
Description
In fr/recorder/checkpoint/types/jfrTypeSet.cpp there are some functions named write__klass__xxx that have external linkage and odd names because they are used as template parameters.  C++11 no longer requires external linkage for template parameters.  Change back to "static" and rename the functions when C++11 becomes available.