Skip to content

Commit 1a50bd0

Browse files
committed
8322568: JFR: Improve metadata for IEEE rounding mode fields
Reviewed-by: mgronlun
1 parent 880c6b4 commit 1a50bd0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/hotspot/share/jfr/metadata/metadata.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -952,8 +952,8 @@
952952
<Field type="string" name="name" label="Name" />
953953
<Field type="boolean" name="success" label="Success" description="Success or failure of the load operation" />
954954
<Field type="string" name="errorMessage" label="Error Message" description="In case of a load error, error description" />
955-
<Field type="boolean" name="fpEnvCorrectionAttempt" label="FPU Environment correction" description="In case of IEEE conformance issues we might reset the FP environment" />
956-
<Field type="boolean" name="fpEnvCorrectionSuccess" label="FPU Environment correction result" description="Stores the result in the case of an FP environment correction" />
955+
<Field type="boolean" name="fpuCorrectionAttempt" label="FPU Environment Correction" description="In case of IEEE conformance issues we might reset the FP environment" />
956+
<Field type="boolean" name="fpuCorrectionSuccess" label="FPU Environment Correction Result" description="Stores the result in the case of an FP environment correction" />
957957
</Event>
958958

959959
<Event name="NativeLibraryUnload" category="Java Virtual Machine, Runtime" label="Native Library Unload" thread="true" stackTrace="true" startTime="true"

src/hotspot/share/jfr/support/jfrNativeLibraryLoadEvent.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ void NativeLibraryUnloadEvent::set_result(bool result) {
9191
}
9292

9393
static void set_additional_data(EventNativeLibraryLoad& event, const NativeLibraryLoadEvent& helper) {
94-
event.set_fpEnvCorrectionAttempt(helper.get_fp_env_correction_attempt());
95-
event.set_fpEnvCorrectionSuccess(helper.get_fp_env_correction_success());
94+
event.set_fpuCorrectionAttempt(helper.get_fp_env_correction_attempt());
95+
event.set_fpuCorrectionSuccess(helper.get_fp_env_correction_success());
9696
}
9797

9898
static void set_additional_data(EventNativeLibraryUnload& event, const NativeLibraryUnloadEvent& helper) {

0 commit comments

Comments
 (0)