1. 22 11月, 2013 1 次提交
  2. 16 11月, 2013 1 次提交
  3. 25 10月, 2013 2 次提交
  4. 16 10月, 2013 1 次提交
  5. 13 10月, 2013 1 次提交
  6. 05 10月, 2013 1 次提交
    • S
      8024838: Significant slowdown due to transparent huge pages · 39578cad
      stefank 提交于
      Summary: Don't turn on transparent huge pages (-XX:+UseTransparentHugePages) unless explicitly specified on the command line. This has the effect that large pages are never turned on Linux unless the user has explicitly enabled any of the large pages flags: -XX:+UseLargePages, -XX:+UseTransparentHugePages, -XX:+UseHugeTLBFS, and -XX:+UseSHM.
      Reviewed-by: jwilhelm, tschatzl, brutisso
      39578cad
  7. 03 10月, 2013 2 次提交
  8. 25 9月, 2013 1 次提交
  9. 17 9月, 2013 1 次提交
  10. 16 9月, 2013 1 次提交
  11. 12 9月, 2013 1 次提交
  12. 11 9月, 2013 2 次提交
  13. 07 9月, 2013 1 次提交
  14. 06 9月, 2013 1 次提交
  15. 30 8月, 2013 1 次提交
  16. 29 8月, 2013 1 次提交
  17. 24 8月, 2013 1 次提交
  18. 23 8月, 2013 1 次提交
    • G
      8023033: PPC64 (part 13): basic changes for AIX · 4c8ea96d
      goetz 提交于
      Summary: Added AIX includes alpha-sorted before BSD. Fix compilation issues with xlC in shared code. Basic shared platform dependend adaption (vm_version etc.).
      Reviewed-by: kvn, dholmes, stefank
      4c8ea96d
  19. 22 8月, 2013 2 次提交
    • H
      7121403: [TESTBUG] runtime/7051189/Xchecksig.sh fails on 64bit solaris · 7d811172
      hseigel 提交于
      8023393: Need to suppress info message if -Xcheck:jni used with libjsig.dylab on Mac OSX
      Summary: Rewrite 7051189 test in Java, port Linux fix for 7051189 to Mac OSX.
      Reviewed-by: coleenp, dholmes, mseledtsov, ccheung
      7d811172
    • M
      8016155: SIGBUS when running Kitchensink with ParallelScavenge and ParallelOld · 28aaccf7
      mgerdin 提交于
      Summary: When using NUMA and large pages we need to ease the requirement on which node the memory should be allocated on. To avoid the SIGBUS we now use the memory policy MPOL_PREFERRED, which prefers a certain node, instead of MPOL_BIND, which requires a certain node.
      Reviewed-by: jmasa, pliden
      Contributed-by: stefan.johansson@oracle.com
      28aaccf7
  20. 21 8月, 2013 1 次提交
    • S
      8022808: Kitchensink hangs on macos · b8291346
      sla 提交于
      Summary: Use pthread_mach_thread_np() instead of mach_thread_self() to avoid leaking resources
      Reviewed-by: dholmes, rbackman
      b8291346
  21. 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
  22. 10 8月, 2013 1 次提交
  23. 07 8月, 2013 1 次提交
  24. 26 7月, 2013 1 次提交
    • G
      8020775: PPC64 (part 12): posix signal printing · 5f913672
      goetz 提交于
      Summary: Implement methods printing posix signal information and call them in unix os files.
      Reviewed-by: kvn, dholmes, twisti
      Contributed-by: thomas.stuefe@sap.com
      5f913672
  25. 18 7月, 2013 1 次提交
  26. 17 7月, 2013 1 次提交
  27. 11 7月, 2013 1 次提交
  28. 05 7月, 2013 1 次提交
    • D
      8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace · e377c127
      dcubed 提交于
      Summary: Dl_info struct should only be used if dladdr() has returned non-zero (no errors) and always check the dladdr() return value; Dl_info.dli_sname and Dl_info.dli_saddr fields should only be used if non-NULL; update/improve runtime/6888954/vmerrors.sh test
      Reviewed-by: dsamersoff, zgu, hseigel, coleenp
      e377c127
  29. 02 7月, 2013 1 次提交
  30. 21 6月, 2013 1 次提交
    • G
      8016586: PPC64 (part 3): basic changes for PPC64 · 5f92a492
      goetz 提交于
      Summary: added #includes needed for ppc64 port. Renamed _MODEL_ppc to _MODEL_ppc_32 and renamed corresponding old _ppc files to _ppc_32.
      Reviewed-by: dholmes, kvn
      5f92a492
  31. 20 6月, 2013 1 次提交
  32. 19 6月, 2013 1 次提交
    • G
      8016491: PPC64 (part 2): Clean up PPC defines. · d11fa79d
      goetz 提交于
      Summary: Distinguish PPC, PPC64 and PPC32. PPC should guard code needed on any PPC system. PPC32 and PPC64 should guard code needed in a port for the ppc64 or ppc32 instruction set.
      Reviewed-by: kvn
      d11fa79d
  33. 18 6月, 2013 1 次提交
  34. 13 7月, 2013 1 次提交
    • A
      7162400: Intermittent java.io.IOException: Bad file number during... · 04a6ead8
      allwin 提交于
      7162400: Intermittent java.io.IOException: Bad file number during HotSpotVirtualMachine.executeCommand
      Summary: Intermittent java.io.IOException: Bad file number during HotSpotVirtualMachine.executeCommand
      Reviewed-by: dcubed, dholmes, sspitsyn, mgerdin, ctornqvi, dsamersoff
      04a6ead8
  35. 14 6月, 2013 2 次提交