RFR: 8351491: Add info from release file to hserr file [v2]

Matthias Baesken mbaesken at openjdk.org
Thu Mar 27 15:31:16 UTC 2025


On Thu, 27 Mar 2025 04:29:55 GMT, David Holmes <dholmes at openjdk.org> wrote:

>> Matthias Baesken has updated the pull request incrementally with one additional commit since the last revision:
>> 
>>   address Windows issues
>
> src/hotspot/share/runtime/arguments.cpp line 3665:
> 
>> 3663: 
>> 3664:   // cache the release file of the JDK image
>> 3665:   os::read_image_release_file();
> 
> What is the impact on startup?

The loading takes about that time
Elapsed time loading release file: 0.000127 seconds
(measured on Linux x86_64, jdk image with release file is on a slow filer, probably even faster in a good environment)
This is measured with clock



   // cache the release file of the JDK image
+  clock_t start, end;
+  double elapsed_time;
+
+  start = clock();
+
   os::read_image_release_file();
 
+  end = clock();
+  elapsed_time = ((double)(end - start)) / CLOCKS_PER_SEC;
+
+  if (log_is_enabled(Info, arguments)) {
+    printf("Elapsed time loading release file: %f seconds\n", elapsed_time);
+  }

-------------

PR Review Comment: https://git.openjdk.org/jdk/pull/24244#discussion_r2016940068


More information about the hotspot-dev mailing list