1. 03 4月, 2020 1 次提交
  2. 12 8月, 2019 1 次提交
    • A
      8223147: JFR Backport · af3d4c64
      apetushkov 提交于
      8199712: Flight Recorder
      8203346: JFR: Inconsistent signature of jfr_add_string_constant
      8195817: JFR.stop should require name of recording
      8195818: JFR.start should increase autogenerated name by one
      8195819: Remove recording=x from jcmd JFR.check output
      8203921: JFR thread sampling is missing fixes from JDK-8194552
      8203929: Limit amount of data for JFR.dump
      8203664: JFR start failure after AppCDS archive created with JFR StartFlightRecording
      8003209: JFR events for network utilization
      8207392: [PPC64] Implement JFR profiling
      8202835: jfr/event/os/TestSystemProcess.java fails on missing events
      Summary: Backport JFR from JDK11. Initial integration
      Reviewed-by: neugens
      af3d4c64
  3. 18 5月, 2019 1 次提交
  4. 17 6月, 2019 1 次提交
  5. 16 10月, 2018 1 次提交
  6. 07 7月, 2018 2 次提交
  7. 21 4月, 2016 1 次提交
  8. 04 3月, 2016 1 次提交
  9. 07 12月, 2015 2 次提交
  10. 06 8月, 2015 2 次提交
  11. 13 3月, 2015 1 次提交
  12. 07 3月, 2015 1 次提交
  13. 08 1月, 2016 1 次提交
  14. 15 5月, 2015 1 次提交
    • M
      6536943: Bogus -Xcheck:jni warning for SIG_INT action for SIGINT in JVM... · 32ecab55
      minqi 提交于
      6536943: Bogus -Xcheck:jni warning for SIG_INT action for SIGINT in JVM started from non-interactive shell
      Summary: check_signal_handler will print out Warning for SHURDOWN2_SIGNAL (SIGINT) is replaced by non-interactive shell. Fix by supply more information of the replacement to user.
      Reviewed-by: dholmes
      Contributed-by: yumin.qi@oracle.com
      32ecab55
  15. 18 11月, 2014 2 次提交
  16. 16 11月, 2014 1 次提交
    • D
      8033602: wrong stabs data in libjvm.debuginfo on JDK 8 - SPARC · 3e31e839
      dcubed 提交于
      8034005: cannot debug in synchronizer.o or objectMonitor.o on Solaris X86
      Summary: Solaris needs objcopy version of 2.21.1 or newer is needed to create valid .debuginfo files.
      Reviewed-by: dsamersoff, sspitsyn, dholmes, ihse
      3e31e839
  17. 11 11月, 2014 1 次提交
  18. 25 10月, 2014 1 次提交
  19. 27 8月, 2014 1 次提交
  20. 15 9月, 2014 1 次提交
  21. 25 4月, 2014 1 次提交
  22. 10 4月, 2014 1 次提交
  23. 18 11月, 2015 1 次提交
  24. 06 3月, 2014 1 次提交
    • D
      8029775: Solaris code cleanup · cf94d9df
      dcubed 提交于
      Summary: cleaned up warnings in solaris specific os code.
      Reviewed-by: coleenp, fparain, dcubed
      Contributed-by: gerald.thornbrugh@oracle.com
      cf94d9df
  25. 14 2月, 2014 1 次提交
  26. 26 2月, 2019 1 次提交
  27. 24 1月, 2014 1 次提交
  28. 21 7月, 2014 1 次提交
  29. 08 5月, 2014 1 次提交
  30. 29 4月, 2014 1 次提交
  31. 23 1月, 2014 1 次提交
    • S
      8031968: Mac OS X: VM starts the agent by calling both Agent_OnAttach and... · 5975a8a8
      sla 提交于
      8031968: Mac OS X: VM starts the agent by calling both Agent_OnAttach and Agent_OnAttach_L functions if its agent library is dynamically linked.
      Summary: Make sure we only look for statically linked agents in the main process image
      Reviewed-by: dsamersoff, bpittore, dcubed
      5975a8a8
  32. 01 2月, 2018 1 次提交
  33. 25 12月, 2013 1 次提交
  34. 22 11月, 2013 1 次提交
  35. 11 9月, 2013 1 次提交
    • T
      8010722: assert: failed: heap size is too big for compressed oops · 95a96a89
      tschatzl 提交于
      Summary: Use conservative assumptions of required alignment for the various garbage collector components into account when determining the maximum heap size that supports compressed oops. Using this conservative value avoids several circular dependencies in the calculation.
      Reviewed-by: stefank, dholmes
      95a96a89
  36. 16 8月, 2013 1 次提交
    • S
      8007074: SIGSEGV at ParMarkBitMap::verify_clear() · e52f7476
      stefank 提交于
      Summary: Replace the broken large pages implementation on Linux. New flag: -XX:+UseTransparentHugePages - Linux specific flag to turn on transparent huge page hinting with madvise(..., MAP_HUGETLB). Changed behavior: -XX:+UseLargePages - tries to use -XX:+UseTransparentHugePages before trying other large pages implementations (on Linux). Changed behavior: -XX:+UseHugeTLBFS - Use upfront allocation of Large Pages instead of using the broken implementation to dynamically committing large pages. Changed behavior: -XX:LargePageSizeInBytes - Turned off the ability to use this flag on Linux and provides warning to user if set to a value different than the OS chosen large page size. Changed behavior: Setting no large page size - Now defaults to use -XX:UseTransparentHugePages if the OS supports it. Previously, -XX:+UseHugeTLBFS was chosen if the OS was configured to use large pages.
      Reviewed-by: tschatzl, dcubed, brutisso
      e52f7476