Wed, 05 Jul 2017 16:46:41 +0200 Merge
duke [Wed, 05 Jul 2017 16:46:41 +0200] rev 1915
Merge
Tue, 10 Feb 2009 20:33:36 -0800 Merge
trims [Tue, 10 Feb 2009 20:33:36 -0800] rev 1914
Merge
Fri, 30 Jan 2009 15:28:00 -0800 Merge
trims [Fri, 30 Jan 2009 15:28:00 -0800] rev 1913
Merge
Thu, 29 Jan 2009 21:25:42 -0800 Merge
ysr [Thu, 29 Jan 2009 21:25:42 -0800] rev 1912
Merge
Tue, 27 Jan 2009 18:13:59 -0800 6783381: NUMA allocator: don't pretouch eden space with UseNUMA
iveresov [Tue, 27 Jan 2009 18:13:59 -0800] rev 1911
6783381: NUMA allocator: don't pretouch eden space with UseNUMA Summary: Moved pretouching to MutableSpace. Also MutableSpace now turns on page interleaving for the region it covers. Reviewed-by: jmasa, jcoomes
Mon, 26 Jan 2009 12:47:21 -0800 6786503: Overflow list performance can be improved
ysr [Mon, 26 Jan 2009 12:47:21 -0800] rev 1910
6786503: Overflow list performance can be improved Summary: Avoid overflow list walk in CMS & ParNew when it is unnecessary. Fix a couple of correctness issues, including a C-heap leak, in ParNew at the intersection of promotion failure, work queue overflow and object array chunking. Add stress testing option and related assertion checking. Reviewed-by: jmasa
Mon, 26 Jan 2009 12:07:54 -0800 6795913: A few remaining wrong casts need to be fixed for building hotspot successfully on Mac OS.
xlu [Mon, 26 Jan 2009 12:07:54 -0800] rev 1909
6795913: A few remaining wrong casts need to be fixed for building hotspot successfully on Mac OS. Summary: Use NULL_WORD in the places where intptr_t is expected due to incompatible types between intptr_t & int32_t Reviewed-by: phh, coleenp, never
Fri, 23 Jan 2009 10:41:28 -0500 Merge
coleenp [Fri, 23 Jan 2009 10:41:28 -0500] rev 1908
Merge
Wed, 21 Jan 2009 11:14:19 -0500 6792705: Add JAR file to bootclasspath when using AggressiveOpts
phh [Wed, 21 Jan 2009 11:14:19 -0500] rev 1907
6792705: Add JAR file to bootclasspath when using AggressiveOpts Summary: During argument processing, add alt-rt.jar to the bootclasspath between bootclasspath/p and default elements. Reviewed-by: xlu, coleenp
Thu, 15 Jan 2009 13:30:09 -0800 Merge
swamyv [Thu, 15 Jan 2009 13:30:09 -0800] rev 1906
Merge
Wed, 14 Jan 2009 19:45:01 -0800 6786948: SA on core file fails on solaris-amd64 if vm started with -XX:+StartAttachListener
swamyv [Wed, 14 Jan 2009 19:45:01 -0800] rev 1905
6786948: SA on core file fails on solaris-amd64 if vm started with -XX:+StartAttachListener Reviewed-by: jjh, dcubed
Wed, 14 Jan 2009 20:14:19 -0500 6793825: Missing include dependancies for GCC without predefined headers
coleenp [Wed, 14 Jan 2009 20:14:19 -0500] rev 1904
6793825: Missing include dependancies for GCC without predefined headers Summary: With predefined headers off for gcc, some .inline.hpp files aren't included to make definition visible for inline functions Reviewed-by: jcoomes, xlu
Wed, 21 Jan 2009 13:40:10 -0800 Merge
jcoomes [Wed, 21 Jan 2009 13:40:10 -0800] rev 1903
Merge
Fri, 16 Jan 2009 13:02:20 -0500 6484956: G1: improve evacuation pause efficiency
tonyp [Fri, 16 Jan 2009 13:02:20 -0500] rev 1902
6484956: G1: improve evacuation pause efficiency Summary: A bunch of performance optimizations to decrease GC pause times in G1. Reviewed-by: apetrusenko, jmasa, iveresov
Thu, 15 Jan 2009 12:44:03 -0500 Merge
coleenp [Thu, 15 Jan 2009 12:44:03 -0500] rev 1901
Merge
Tue, 13 Jan 2009 17:39:03 -0800 6792301: StackAlignmentInBytes not honored for compiled native methods
xlu [Tue, 13 Jan 2009 17:39:03 -0800] rev 1900
6792301: StackAlignmentInBytes not honored for compiled native methods Summary: Fixed the stack misalignment when generate_native_wrapper is called. Reviewed-by: never, kamg, kvn, phh
Tue, 13 Jan 2009 14:49:07 -0800 Merge
xlu [Tue, 13 Jan 2009 14:49:07 -0800] rev 1899
Merge
Tue, 13 Jan 2009 12:14:38 -0800 Merge
xlu [Tue, 13 Jan 2009 12:14:38 -0800] rev 1898
Merge
Tue, 13 Jan 2009 12:08:43 -0800 6791815: Fix for 6471657 can cause deadlock on non-Solaris platforms when initializing direct buffer support
xlu [Tue, 13 Jan 2009 12:08:43 -0800] rev 1897
6791815: Fix for 6471657 can cause deadlock on non-Solaris platforms when initializing direct buffer support Summary: Place the state transition inside the loop so that the VMThread could proceed for safepoint Reviewed-by: dholmes, never, acorn
Tue, 13 Jan 2009 14:41:44 -0500 6791168: Fix invalid code in bytecodeInterpreter that can cause gcc ICE
coleenp [Tue, 13 Jan 2009 14:41:44 -0500] rev 1896
6791168: Fix invalid code in bytecodeInterpreter that can cause gcc ICE Summary: Fix compilation errors from latest gcc in CC_INTERP including offending missing void* cast. Reviewed-by: xlu
Wed, 14 Jan 2009 14:12:55 -0800 Merge
jcoomes [Wed, 14 Jan 2009 14:12:55 -0800] rev 1895
Merge
Sun, 11 Jan 2009 16:58:24 -0800 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa [Sun, 11 Jan 2009 16:58:24 -0800] rev 1894
6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark" Summary: The CMS concurrent precleaning and concurrent marking phases should work around classes that are undergoing redefinition. Reviewed-by: ysr, dcubed
Tue, 06 Jan 2009 07:05:05 -0800 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa [Tue, 06 Jan 2009 07:05:05 -0800] rev 1893
6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off Summary: Added safe_object_iterate() for use by JMapPerm. Reviewed-by: tonyp
Fri, 09 Jan 2009 14:39:07 -0500 Merge
coleenp [Fri, 09 Jan 2009 14:39:07 -0500] rev 1892
Merge
Thu, 08 Jan 2009 16:27:28 -0500 6791656: nsk defclass0 asserts handles.hpp
acorn [Thu, 08 Jan 2009 16:27:28 -0500] rev 1891
6791656: nsk defclass0 asserts handles.hpp Reviewed-by: phh, xlu
Mon, 05 Jan 2009 13:44:03 -0500 4670071: loadClassInternal is too restrictive.
acorn [Mon, 05 Jan 2009 13:44:03 -0500] rev 1890
4670071: loadClassInternal is too restrictive. Summary: VM support for deadlock fix. Library fix in 4735126. See API proposal. Reviewed-by: dholmes, blacklion
Wed, 24 Dec 2008 19:13:53 -0800 6781583: Hotspot build fails on linux 64 bit platform with gcc 4.3.2
xlu [Wed, 24 Dec 2008 19:13:53 -0800] rev 1889
6781583: Hotspot build fails on linux 64 bit platform with gcc 4.3.2 Summary: Fixed the wrong cast between types since more restrictions are imposed by gcc 4.3.2 Reviewed-by: jcoomes, acorn, phh, never
Wed, 24 Dec 2008 13:06:09 -0800 6787106: Hotspot 32 bit build fails on platforms having different definitions for intptr_t & int32_t
xlu [Wed, 24 Dec 2008 13:06:09 -0800] rev 1888
6787106: Hotspot 32 bit build fails on platforms having different definitions for intptr_t & int32_t Summary: Avoid casting between int32_t and intptr_t specifically for MasmAssembler::movptr in 32 bit platforms. Reviewed-by: jrose, kvn
Tue, 23 Dec 2008 06:16:53 -0800 4997835: RFE: crash dump will only be created when running w/ -XX:+ShowMessageBoxOnError
coleenp [Tue, 23 Dec 2008 06:16:53 -0800] rev 1887
4997835: RFE: crash dump will only be created when running w/ -XX:+ShowMessageBoxOnError Summary: Using UseOSErrorReporting will provide both an hs_err file and a crash dump or debug launch and works better. Reviewed-by: xlu, acorn, poonam
Tue, 06 Jan 2009 16:10:11 -0800 Merge
never [Tue, 06 Jan 2009 16:10:11 -0800] rev 1886
Merge
Mon, 22 Dec 2008 16:53:34 -0800 6778662: fixes 64-bits libraries directory search paths on linux
kvn [Mon, 22 Dec 2008 16:53:34 -0800] rev 1885
6778662: fixes 64-bits libraries directory search paths on linux Summary: Fixes 64-bits libraries directory search paths. Reviewed-by: never Contributed-by: langel@redhat.com
Mon, 22 Dec 2008 15:43:02 -0800 6778657: Casts in SharedRuntime::f2i, f2l, d2i and d2l rely on undefined C++ behaviour
kvn [Mon, 22 Dec 2008 15:43:02 -0800] rev 1884
6778657: Casts in SharedRuntime::f2i, f2l, d2i and d2l rely on undefined C++ behaviour Summary: Replaces SharedRuntime::f2i et al with versions that should work Reviewed-by: never Contributed-by: gbenson@redhat.com
Tue, 23 Dec 2008 19:28:18 -0800 6788797: Fork HS14 to HS15 - renumber Major and build numbers of JVM
trims [Tue, 23 Dec 2008 19:28:18 -0800] rev 1883
6788797: Fork HS14 to HS15 - renumber Major and build numbers of JVM Summary: fork Hotspot 15 - redo verisoning numbers Reviewed-by: jcoomes
Thu, 05 Feb 2009 16:07:33 -0800 Added tag jdk7-b46 for changeset be9d0d46381d
xdono [Thu, 05 Feb 2009 16:07:33 -0800] rev 1882
Added tag jdk7-b46 for changeset be9d0d46381d
Thu, 05 Feb 2009 16:07:28 -0800 Added tag jdk7-b46 for changeset 872bdc318937
xdono [Thu, 05 Feb 2009 16:07:28 -0800] rev 1881
Added tag jdk7-b46 for changeset 872bdc318937
Wed, 05 Jul 2017 16:46:30 +0200 Added tag jdk7-b46 for changeset 04b2620edc72
duke [Wed, 05 Jul 2017 16:46:30 +0200] rev 1880
Added tag jdk7-b46 for changeset 04b2620edc72
Wed, 05 Jul 2017 16:46:29 +0200 Merge jdk7-b46
duke [Wed, 05 Jul 2017 16:46:29 +0200] rev 1879
Merge
Wed, 05 Jul 2017 16:46:27 +0200 Merge
duke [Wed, 05 Jul 2017 16:46:27 +0200] rev 1878
Merge
Thu, 29 Jan 2009 21:48:36 -0800 Merge
tbell [Thu, 29 Jan 2009 21:48:36 -0800] rev 1877
Merge
Mon, 26 Jan 2009 15:14:46 -0800 6797871: Fix for 6797463 did not remove the jtreg tests, and it should have
tbell [Mon, 26 Jan 2009 15:14:46 -0800] rev 1876
6797871: Fix for 6797463 did not remove the jtreg tests, and it should have Reviewed-by: jjg
Sat, 24 Jan 2009 16:35:52 -0800 Merge
tbell [Sat, 24 Jan 2009 16:35:52 -0800] rev 1875
Merge
Sat, 24 Jan 2009 11:07:32 -0800 6797463: 6557199 breaks the jax-ws workspace
tbell [Sat, 24 Jan 2009 11:07:32 -0800] rev 1874
6797463: 6557199 breaks the jax-ws workspace Reviewed-by: jjg
Fri, 23 Jan 2009 11:23:10 -0800 6795365: NetBeans projects in langtools repository are not NB6.5-friendly
jjg [Fri, 23 Jan 2009 11:23:10 -0800] rev 1873
6795365: NetBeans projects in langtools repository are not NB6.5-friendly Reviewed-by: mcimadamore
Thu, 22 Jan 2009 15:45:44 -0800 6796965: dev-time wrapper script for javac broken
jjg [Thu, 22 Jan 2009 15:45:44 -0800] rev 1872
6796965: dev-time wrapper script for javac broken Reviewed-by: ksrini
Wed, 21 Jan 2009 08:21:41 -0800 6795030: Files in langtools build can be compiled ignoring java.home settings
jjg [Wed, 21 Jan 2009 08:21:41 -0800] rev 1871
6795030: Files in langtools build can be compiled ignoring java.home settings Reviewed-by: mcimadamore
Tue, 20 Jan 2009 18:23:13 -0800 6795903: fix latent build warnings in langtools repository
jjg [Tue, 20 Jan 2009 18:23:13 -0800] rev 1870
6795903: fix latent build warnings in langtools repository Reviewed-by: darcy
Tue, 20 Jan 2009 15:17:45 -0800 6794582: javadoc should read files using a FileManager
jjg [Tue, 20 Jan 2009 15:17:45 -0800] rev 1869
6794582: javadoc should read files using a FileManager Reviewed-by: darcy, bpatel
Tue, 20 Jan 2009 17:49:49 +0000 6557199: Fails to reject bad override of generic method
mcimadamore [Tue, 20 Jan 2009 17:49:49 +0000] rev 1868
6557199: Fails to reject bad override of generic method Summary: Javac does not correctly implement JLS3 8.4.5 Reviewed-by: jjg
Tue, 20 Jan 2009 17:49:09 +0000 6795580: parser confused by square brackets in qualified generic cast
mcimadamore [Tue, 20 Jan 2009 17:49:09 +0000] rev 1867
6795580: parser confused by square brackets in qualified generic cast Summary: Parser rejects cast with qualified generic array types Reviewed-by: jjg
Mon, 19 Jan 2009 19:36:14 -0800 6794959: add new switch -XDexpectKeys=key,key....
jjg [Mon, 19 Jan 2009 19:36:14 -0800] rev 1866
6794959: add new switch -XDexpectKeys=key,key.... Reviewed-by: mcimadamore
Fri, 16 Jan 2009 14:05:55 -0800 6583626: Improve serialization support in javax.lang.model.type exception classes
darcy [Fri, 16 Jan 2009 14:05:55 -0800] rev 1865
6583626: Improve serialization support in javax.lang.model.type exception classes Reviewed-by: jjg
Thu, 15 Jan 2009 18:06:36 -0800 6794520: MessageRetriever should be upgraded to use varargs Object...
jjg [Thu, 15 Jan 2009 18:06:36 -0800] rev 1864
6794520: MessageRetriever should be upgraded to use varargs Object... Reviewed-by: bpatel
Thu, 15 Jan 2009 17:21:11 -0800 6786682: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - HTML tag should have lang attribute
bpatel [Thu, 15 Jan 2009 17:21:11 -0800] rev 1863
6786682: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - HTML tag should have lang attribute Reviewed-by: jjg
Thu, 29 Jan 2009 13:21:18 -0800 Added tag jdk7-b45 for changeset 779f966ee652
xdono [Thu, 29 Jan 2009 13:21:18 -0800] rev 1862
Added tag jdk7-b45 for changeset 779f966ee652
Wed, 05 Jul 2017 16:46:22 +0200 Merge
duke [Wed, 05 Jul 2017 16:46:22 +0200] rev 1861
Merge
Thu, 29 Jan 2009 13:21:02 -0800 Added tag jdk7-b45 for changeset a935fb480c23
xdono [Thu, 29 Jan 2009 13:21:02 -0800] rev 1860
Added tag jdk7-b45 for changeset a935fb480c23
Wed, 05 Jul 2017 16:46:19 +0200 Merge
duke [Wed, 05 Jul 2017 16:46:19 +0200] rev 1859
Merge
Thu, 29 Jan 2009 13:21:00 -0800 Added tag jdk7-b45 for changeset 5c97af908fdd
xdono [Thu, 29 Jan 2009 13:21:00 -0800] rev 1858
Added tag jdk7-b45 for changeset 5c97af908fdd
Wed, 05 Jul 2017 16:46:17 +0200 Merge
duke [Wed, 05 Jul 2017 16:46:17 +0200] rev 1857
Merge
Thu, 29 Jan 2009 13:20:53 -0800 Added tag jdk7-b45 for changeset b32f7f58ca66
xdono [Thu, 29 Jan 2009 13:20:53 -0800] rev 1856
Added tag jdk7-b45 for changeset b32f7f58ca66
Wed, 05 Jul 2017 16:46:14 +0200 Merge
duke [Wed, 05 Jul 2017 16:46:14 +0200] rev 1855
Merge
Tue, 03 Feb 2009 22:02:55 -0800 Merge
lana [Tue, 03 Feb 2009 22:02:55 -0800] rev 1854
Merge
Thu, 29 Jan 2009 09:25:47 -0800 Merge
lana [Thu, 29 Jan 2009 09:25:47 -0800] rev 1853
Merge
Thu, 29 Jan 2009 19:06:29 +0300 6794836: BasicSliderUI throws NullPointerExc when JSlider maximum is Integer.MAX_VALUE
rupashka [Thu, 29 Jan 2009 19:06:29 +0300] rev 1852
6794836: BasicSliderUI throws NullPointerExc when JSlider maximum is Integer.MAX_VALUE Reviewed-by: peterz
Thu, 29 Jan 2009 15:34:50 +0300 6788531: java.beans.Statement imposes excessive access control
malenkov [Thu, 29 Jan 2009 15:34:50 +0300] rev 1851
6788531: java.beans.Statement imposes excessive access control Reviewed-by: peterz, rupashka
Mon, 26 Jan 2009 09:19:59 +0900 6796489: (tz) Support tzdata2009a
peytoia [Mon, 26 Jan 2009 09:19:59 +0900] rev 1850
6796489: (tz) Support tzdata2009a Reviewed-by: okutsu
Fri, 23 Jan 2009 18:31:08 +0300 4222508: JColorChooser ignores setEnabled() function call
malenkov [Fri, 23 Jan 2009 18:31:08 +0300] rev 1849
4222508: JColorChooser ignores setEnabled() function call Reviewed-by: peterz, rupashka
Wed, 21 Jan 2009 13:58:46 -0800 6627549: ISO 3166 code addition: Saint Barthelemy and Saint Martin
naoto [Wed, 21 Jan 2009 13:58:46 -0800] rev 1848
6627549: ISO 3166 code addition: Saint Barthelemy and Saint Martin 6786276: Locale.getISOCountries() still contains country code "CS" Reviewed-by: okutsu
Wed, 21 Jan 2009 21:30:59 +0300 6792401: Windows LAF: ActiveWindowsIcon should not be greedy with fallback icon
peterz [Wed, 21 Jan 2009 21:30:59 +0300] rev 1847
6792401: Windows LAF: ActiveWindowsIcon should not be greedy with fallback icon Summary: Fallback mechanism changed to use symbolic name instead of icon. Reviewed-by: igor, rupashka
Mon, 19 Jan 2009 20:11:58 +0300 6702956: OpenJDK: replace encumbered code (software synthesizer)
amenkov [Mon, 19 Jan 2009 20:11:58 +0300] rev 1846
6702956: OpenJDK: replace encumbered code (software synthesizer) 6717691: Update Gervill with post 1.0 fixes 6740210: Update Gervill with more post 1.0 fixes 6748247: Further update Gervill with still more post 1.0 fixes 6748251: Apply IcedTea midi sound patch 6758986: Gervill: Turn SoftJitterCorrector, SoftAudioPusher threads into a daemon threads Reviewed-by: ohair, darcy
Thu, 25 Dec 2008 20:43:44 +0300 6736248: EnumEditor bug. Class check incorrect
malenkov [Thu, 25 Dec 2008 20:43:44 +0300] rev 1845
6736248: EnumEditor bug. Class check incorrect Reviewed-by: rupashka, alexp
Mon, 22 Dec 2008 17:42:49 +0300 4864117: RFE: Make XMLDecoder API more reusable
malenkov [Mon, 22 Dec 2008 17:42:49 +0300] rev 1844
4864117: RFE: Make XMLDecoder API more reusable Reviewed-by: peterz, loneid
Thu, 27 Nov 2008 17:55:36 +0300 6776095: Code improvement and warnings removing from swing packages
rupashka [Thu, 27 Nov 2008 17:55:36 +0300] rev 1843
6776095: Code improvement and warnings removing from swing packages Reviewed-by: malenkov Contributed-by: Florian Brunner <fbrunnerlist@gmx.ch>
Wed, 26 Nov 2008 19:38:46 +0300 6776856: Code with useShellFolder field shuold be simplify
rupashka [Wed, 26 Nov 2008 19:38:46 +0300] rev 1842
6776856: Code with useShellFolder field shuold be simplify Reviewed-by: peterz
Wed, 26 Nov 2008 19:08:41 +0300 6560349: REGRESSION :folder having ".lnk" in the name can not be opened by 5.0 and later versions
rupashka [Wed, 26 Nov 2008 19:08:41 +0300] rev 1841
6560349: REGRESSION :folder having ".lnk" in the name can not be opened by 5.0 and later versions Reviewed-by: alexp
Tue, 25 Nov 2008 16:42:10 +0300 6698013: JFileChooser can no longer navigate non-local file systems.
rupashka [Tue, 25 Nov 2008 16:42:10 +0300] rev 1840
6698013: JFileChooser can no longer navigate non-local file systems. Summary: ShellFolder is used only if possible Reviewed-by: peterz
Tue, 18 Nov 2008 15:59:36 +0900 6772646: Regression test java/text/Date/DateFormat/Bug4823811.java started failing after DST ended.
peytoia [Tue, 18 Nov 2008 15:59:36 +0900] rev 1839
6772646: Regression test java/text/Date/DateFormat/Bug4823811.java started failing after DST ended. Reviewed-by: okutsu
Tue, 18 Nov 2008 13:58:43 +0900 6769873: Regression test java/text/Date/DateFormat/Bug6683975.java started failing after DST ended.
peytoia [Tue, 18 Nov 2008 13:58:43 +0900] rev 1838
6769873: Regression test java/text/Date/DateFormat/Bug6683975.java started failing after DST ended. Reviewed-by: okutsu
Mon, 17 Nov 2008 17:36:27 +0300 6771030: Code improvement and warnings removing from the com.sun.java.swing.plaf.gtk package
rupashka [Mon, 17 Nov 2008 17:36:27 +0300] rev 1837
6771030: Code improvement and warnings removing from the com.sun.java.swing.plaf.gtk package Summary: Removed unnecessary castings and other warnings Reviewed-by: malenkov
Thu, 30 Oct 2008 13:12:54 +0900 6764308: (tz) Support tzdata2008i
peytoia [Thu, 30 Oct 2008 13:12:54 +0900] rev 1836
6764308: (tz) Support tzdata2008i Reviewed-by: okutsu
Fri, 17 Oct 2008 15:01:10 -0700 Merge
lana [Fri, 17 Oct 2008 15:01:10 -0700] rev 1835
Merge
Fri, 17 Oct 2008 13:34:03 +0900 6759521: Move Bidi test programs from closed to open.
peytoia [Fri, 17 Oct 2008 13:34:03 +0900] rev 1834
6759521: Move Bidi test programs from closed to open. Reviewed-by: okutsu
Thu, 16 Oct 2008 14:00:58 +0900 6758988: (tz) Support tzdata2008h
peytoia [Thu, 16 Oct 2008 14:00:58 +0900] rev 1833
6758988: (tz) Support tzdata2008h Reviewed-by: okutsu
Wed, 15 Oct 2008 15:55:19 +0200 6759311: RepaintManager casts Tookit to SunToolkit without instanceof check
rkennke [Wed, 15 Oct 2008 15:55:19 +0200] rev 1832
6759311: RepaintManager casts Tookit to SunToolkit without instanceof check Summary: Check type of Toolkit before casting. Reviewed-by: alexp
Tue, 07 Oct 2008 18:25:59 +0900 6756569: (tz) Support tzdata2008g
peytoia [Tue, 07 Oct 2008 18:25:59 +0900] rev 1831
6756569: (tz) Support tzdata2008g Reviewed-by: okutsu
Mon, 06 Oct 2008 17:16:06 -0700 6706382: jdk/test/java/util/Locale/data/deflocale.sol10 has incorrect legal notice
naoto [Mon, 06 Oct 2008 17:16:06 -0700] rev 1830
6706382: jdk/test/java/util/Locale/data/deflocale.sol10 has incorrect legal notice Reviewed-by: okutsu
Fri, 03 Oct 2008 15:54:41 +0900 6683975: [fmt-da] Regression: Java 6 returns English DateFormatPatterns for Thai locale
peytoia [Fri, 03 Oct 2008 15:54:41 +0900] rev 1829
6683975: [fmt-da] Regression: Java 6 returns English DateFormatPatterns for Thai locale Reviewed-by: okutsu
Thu, 02 Oct 2008 15:54:59 +0900 6645263: (cal) Calendar throw java.lang.IllegalArgumentException: WEEK_OF_MONTH
peytoia [Thu, 02 Oct 2008 15:54:59 +0900] rev 1828
6645263: (cal) Calendar throw java.lang.IllegalArgumentException: WEEK_OF_MONTH Reviewed-by: okutsu
Thu, 29 Jan 2009 21:46:48 -0800 Merge
tbell [Thu, 29 Jan 2009 21:46:48 -0800] rev 1827
Merge
Mon, 26 Jan 2009 19:49:26 -0800 6601457: Move wrapper class tests from closed to open
darcy [Mon, 26 Jan 2009 19:49:26 -0800] rev 1826
6601457: Move wrapper class tests from closed to open 6601458: Move java.math tests from closed to open 6740185: Move java/lang/annotations tests to open 6759433: Move Math and StrictMath regression tests from closed to open Summary: Move some more regression tests to the open Reviewed-by: jjg
Sat, 24 Jan 2009 16:35:17 -0800 Merge
tbell [Sat, 24 Jan 2009 16:35:17 -0800] rev 1825
Merge
Fri, 23 Jan 2009 10:37:41 -0800 6604864: Double.valueOf(String) does not specify behaviour for overflow and underflow
darcy [Fri, 23 Jan 2009 10:37:41 -0800] rev 1824
6604864: Double.valueOf(String) does not specify behaviour for overflow and underflow Reviewed-by: emcmanus
Thu, 22 Jan 2009 20:29:54 -0800 6476425: (fmt)java.util.Formatter.print() throws IllegalArgumentException on large BigDecima
sherman [Thu, 22 Jan 2009 20:29:54 -0800] rev 1823
6476425: (fmt)java.util.Formatter.print() throws IllegalArgumentException on large BigDecima Summary: Correct the wrong calculation of "precision" in certain circumstances. Reviewed-by: darcy, alanb
Tue, 20 Jan 2009 16:16:35 -0800 Merge
mchung [Tue, 20 Jan 2009 16:16:35 -0800] rev 1822
Merge
Tue, 20 Jan 2009 13:04:19 -0800 6769976: (fc) FileChannelImpl.isAMappedBufferField not used
mchung [Tue, 20 Jan 2009 13:04:19 -0800] rev 1821
6769976: (fc) FileChannelImpl.isAMappedBufferField not used Summary: Remove the FileChannelImpl.isAMappedBufferField field Reviewed-by: alanb
Tue, 20 Jan 2009 13:02:58 -0800 6793429: Use compiled properties instead of plain properties for resource file
mchung [Tue, 20 Jan 2009 13:02:58 -0800] rev 1820
6793429: Use compiled properties instead of plain properties for resource file Summary: Rename the variables in Resources.gmk to make compiled properties more explicit Reviewed-by: naoto, yhuang
Mon, 19 Jan 2009 18:49:10 +0800 6793475: krb5.ini not found on some Windows
weijun [Mon, 19 Jan 2009 18:49:10 +0800] rev 1819
6793475: krb5.ini not found on some Windows Reviewed-by: xuelei
Wed, 14 Jan 2009 16:23:29 -0800 6792545: Typo in java.util.Collection JavaDoc
darcy [Wed, 14 Jan 2009 16:23:29 -0800] rev 1818
6792545: Typo in java.util.Collection JavaDoc 6655123: Incorrect ref to The Art of Computer Programming in doc for java.util.Random Summary: Fix a pair of typos. Reviewed-by: jjg
Wed, 14 Jan 2009 17:17:34 +0000 6755782: It is not clear how DatagramSocket deals with broadcast enabling/disabling
chegar [Wed, 14 Jan 2009 17:17:34 +0000] rev 1817
6755782: It is not clear how DatagramSocket deals with broadcast enabling/disabling Reviewed-by: jccollet
Tue, 13 Jan 2009 09:21:54 -0800 6332094: "jar t" and "jar x" should use ZipFile, not ZipInputStream
sherman [Tue, 13 Jan 2009 09:21:54 -0800] rev 1816
6332094: "jar t" and "jar x" should use ZipFile, not ZipInputStream Summary: To use ZipFile for jar "t" and "x" to boost performance Reviewed-by: martin, alanb
Thu, 29 Jan 2009 13:21:07 -0800 Added tag jdk7-b45 for changeset fdad8fbddf3a
xdono [Thu, 29 Jan 2009 13:21:07 -0800] rev 1815
Added tag jdk7-b45 for changeset fdad8fbddf3a
Wed, 05 Jul 2017 16:46:06 +0200 Merge
duke [Wed, 05 Jul 2017 16:46:06 +0200] rev 1814
Merge
Thu, 29 Jan 2009 13:20:56 -0800 Added tag jdk7-b45 for changeset 6b84304c8b89
xdono [Thu, 29 Jan 2009 13:20:56 -0800] rev 1813
Added tag jdk7-b45 for changeset 6b84304c8b89
Thu, 29 Jan 2009 13:20:52 -0800 Added tag jdk7-b45 for changeset 516aa5488b1a
xdono [Thu, 29 Jan 2009 13:20:52 -0800] rev 1812
Added tag jdk7-b45 for changeset 516aa5488b1a
Wed, 05 Jul 2017 16:45:59 +0200 Added tag jdk7-b45 for changeset 54dffad0bf06
duke [Wed, 05 Jul 2017 16:45:59 +0200] rev 1811
Added tag jdk7-b45 for changeset 54dffad0bf06
Wed, 05 Jul 2017 16:45:59 +0200 Merge jdk7-b45
duke [Wed, 05 Jul 2017 16:45:59 +0200] rev 1810
Merge
Wed, 05 Jul 2017 16:45:56 +0200 Merge
duke [Wed, 05 Jul 2017 16:45:56 +0200] rev 1809
Merge
Thu, 22 Jan 2009 14:42:22 -0800 Added tag jdk7-b44 for changeset 9d204be2281a
xdono [Thu, 22 Jan 2009 14:42:22 -0800] rev 1808
Added tag jdk7-b44 for changeset 9d204be2281a
Wed, 05 Jul 2017 16:45:54 +0200 Merge
duke [Wed, 05 Jul 2017 16:45:54 +0200] rev 1807
Merge
Thu, 22 Jan 2009 14:42:07 -0800 Added tag jdk7-b44 for changeset 8a29755677e2
xdono [Thu, 22 Jan 2009 14:42:07 -0800] rev 1806
Added tag jdk7-b44 for changeset 8a29755677e2
Wed, 05 Jul 2017 16:45:52 +0200 Merge
duke [Wed, 05 Jul 2017 16:45:52 +0200] rev 1805
Merge
Thu, 22 Jan 2009 14:42:06 -0800 Added tag jdk7-b44 for changeset 4c202c81d33f
xdono [Thu, 22 Jan 2009 14:42:06 -0800] rev 1804
Added tag jdk7-b44 for changeset 4c202c81d33f
Wed, 05 Jul 2017 16:45:50 +0200 Merge
duke [Wed, 05 Jul 2017 16:45:50 +0200] rev 1803
Merge
Thu, 22 Jan 2009 14:41:58 -0800 Added tag jdk7-b44 for changeset 8a25de0ed498
xdono [Thu, 22 Jan 2009 14:41:58 -0800] rev 1802
Added tag jdk7-b44 for changeset 8a25de0ed498
Wed, 05 Jul 2017 16:45:48 +0200 Merge
duke [Wed, 05 Jul 2017 16:45:48 +0200] rev 1801
Merge
Thu, 22 Jan 2009 14:42:13 -0800 Added tag jdk7-b44 for changeset 4ce86f6829fb
xdono [Thu, 22 Jan 2009 14:42:13 -0800] rev 1800
Added tag jdk7-b44 for changeset 4ce86f6829fb
Wed, 05 Jul 2017 16:45:46 +0200 Merge
duke [Wed, 05 Jul 2017 16:45:46 +0200] rev 1799
Merge
Thu, 22 Jan 2009 14:42:01 -0800 Added tag jdk7-b44 for changeset ec694d49c4be
xdono [Thu, 22 Jan 2009 14:42:01 -0800] rev 1798
Added tag jdk7-b44 for changeset ec694d49c4be
Thu, 22 Jan 2009 14:41:57 -0800 Added tag jdk7-b44 for changeset 72a127c48637
xdono [Thu, 22 Jan 2009 14:41:57 -0800] rev 1797
Added tag jdk7-b44 for changeset 72a127c48637
Wed, 05 Jul 2017 16:45:39 +0200 Added tag jdk7-b44 for changeset 5843778bda89
duke [Wed, 05 Jul 2017 16:45:39 +0200] rev 1796
Added tag jdk7-b44 for changeset 5843778bda89
Wed, 05 Jul 2017 16:45:38 +0200 Merge jdk7-b44
duke [Wed, 05 Jul 2017 16:45:38 +0200] rev 1795
Merge
Wed, 05 Jul 2017 16:45:36 +0200 Merge
duke [Wed, 05 Jul 2017 16:45:36 +0200] rev 1794
Merge
Fri, 16 Jan 2009 10:38:31 -0800 Merge
tbell [Fri, 16 Jan 2009 10:38:31 -0800] rev 1793
Merge
Tue, 13 Jan 2009 13:31:35 +0000 6558559: Extra "unchecked" diagnostic
mcimadamore [Tue, 13 Jan 2009 13:31:35 +0000] rev 1792
6558559: Extra "unchecked" diagnostic Summary: Fixed Types.sideCast in order to suppress redundant unchecked warnings Reviewed-by: jjg
Tue, 13 Jan 2009 13:28:42 +0000 6723444: javac fails to substitute type variables into a constructor's throws clause
mcimadamore [Tue, 13 Jan 2009 13:28:42 +0000] rev 1791
6723444: javac fails to substitute type variables into a constructor's throws clause Summary: Added constructor's actual type info to NewClass AST node Reviewed-by: jjg Contributed-by: mark@twistedbanana.demon.co.uk
Tue, 13 Jan 2009 13:28:20 +0000 6665356: Cast not allowed when both qualifying type and inner class are parameterized
mcimadamore [Tue, 13 Jan 2009 13:28:20 +0000] rev 1790
6665356: Cast not allowed when both qualifying type and inner class are parameterized Summary: Fixed parser and cats conversion in order to allow cast between generic inner classes Reviewed-by: jjg
Tue, 13 Jan 2009 13:27:14 +0000 6765045: Remove rawtypes warnings from langtools
mcimadamore [Tue, 13 Jan 2009 13:27:14 +0000] rev 1789
6765045: Remove rawtypes warnings from langtools Summary: Removed all occurrences of rawtypes warnings from langtools Reviewed-by: jjg, bpatel
Thu, 08 Jan 2009 16:34:58 -0800 Merge
bpatel [Thu, 08 Jan 2009 16:34:58 -0800] rev 1788
Merge
Thu, 08 Jan 2009 16:26:59 -0800 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel [Thu, 08 Jan 2009 16:26:59 -0800] rev 1787
6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong Reviewed-by: jjg
Wed, 07 Jan 2009 14:48:29 -0800 6512707: "incompatible types" after (unrelated) annotation processing
jjg [Wed, 07 Jan 2009 14:48:29 -0800] rev 1786
6512707: "incompatible types" after (unrelated) annotation processing Reviewed-by: darcy Contributed-by: prunge@velocitynet.com.au
Thu, 15 Jan 2009 11:46:43 -0800 Added tag jdk7-b43 for changeset a02ba404f9c6
xdono [Thu, 15 Jan 2009 11:46:43 -0800] rev 1785
Added tag jdk7-b43 for changeset a02ba404f9c6
Wed, 05 Jul 2017 16:45:33 +0200 Merge
duke [Wed, 05 Jul 2017 16:45:33 +0200] rev 1784
Merge
Thu, 15 Jan 2009 11:46:31 -0800 Added tag jdk7-b43 for changeset ff917d84bdf3
xdono [Thu, 15 Jan 2009 11:46:31 -0800] rev 1783
Added tag jdk7-b43 for changeset ff917d84bdf3
Wed, 05 Jul 2017 16:45:31 +0200 Merge
duke [Wed, 05 Jul 2017 16:45:31 +0200] rev 1782
Merge
Thu, 15 Jan 2009 11:46:30 -0800 Added tag jdk7-b43 for changeset 849b63af3c8c
xdono [Thu, 15 Jan 2009 11:46:30 -0800] rev 1781
Added tag jdk7-b43 for changeset 849b63af3c8c
Wed, 05 Jul 2017 16:45:28 +0200 Merge
duke [Wed, 05 Jul 2017 16:45:28 +0200] rev 1780
Merge
Thu, 15 Jan 2009 11:46:23 -0800 Added tag jdk7-b43 for changeset 3b2f390959e4
xdono [Thu, 15 Jan 2009 11:46:23 -0800] rev 1779
Added tag jdk7-b43 for changeset 3b2f390959e4
Wed, 05 Jul 2017 16:45:26 +0200 Merge
duke [Wed, 05 Jul 2017 16:45:26 +0200] rev 1778
Merge
Tue, 20 Jan 2009 09:42:07 -0800 Merge
xdono [Tue, 20 Jan 2009 09:42:07 -0800] rev 1777
Merge
Wed, 14 Jan 2009 21:35:03 -0800 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell [Wed, 14 Jan 2009 21:35:03 -0800] rev 1776
6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll 6779412: VS2008 errors compiling jdk sources Summary: Update Makefiles to tolerate newer Visual Studio releases and runtimes. Reviewed-by: ohair
Fri, 16 Jan 2009 10:37:41 -0800 Merge
tbell [Fri, 16 Jan 2009 10:37:41 -0800] rev 1775
Merge
Fri, 09 Jan 2009 22:01:38 -0800 Merge
tbell [Fri, 09 Jan 2009 22:01:38 -0800] rev 1774
Merge
Fri, 09 Jan 2009 16:48:46 -0800 6792066: src/share/native/java/io/io_util.c clean-ups
martin [Fri, 09 Jan 2009 16:48:46 -0800] rev 1773
6792066: src/share/native/java/io/io_util.c clean-ups Reviewed-by: alanb
Thu, 08 Jan 2009 15:10:22 -0800 Merge
bpatel [Thu, 08 Jan 2009 15:10:22 -0800] rev 1772
Merge
Thu, 08 Jan 2009 14:17:10 -0800 Merge
bpatel [Thu, 08 Jan 2009 14:17:10 -0800] rev 1771
Merge
Wed, 07 Jan 2009 16:39:43 -0800 6790217: Javadoc HTML WCAG 2.0 accessibility issues in jdk docs makefile - Bold tags should be strong
bpatel [Wed, 07 Jan 2009 16:39:43 -0800] rev 1770
6790217: Javadoc HTML WCAG 2.0 accessibility issues in jdk docs makefile - Bold tags should be strong Reviewed-by: jjg
Thu, 08 Jan 2009 14:07:45 -0800 6791458: FileInputStream/RandomAccessFile.read leaks memory if invoked on closed stream with len > 8k
martin [Thu, 08 Jan 2009 14:07:45 -0800] rev 1769
6791458: FileInputStream/RandomAccessFile.read leaks memory if invoked on closed stream with len > 8k Reviewed-by: alanb Contributed-by: jeremymanson@google.com
Wed, 07 Jan 2009 11:50:32 -0800 6788196: (porting) Bounds checks in io_util.c rely on undefined behaviour
martin [Wed, 07 Jan 2009 11:50:32 -0800] rev 1768
6788196: (porting) Bounds checks in io_util.c rely on undefined behaviour Reviewed-by: alanb Contributed-by: gbenson@redhat.com
Wed, 07 Jan 2009 14:06:04 +0100 6790467: Add test for setInterval() for local MonitoredHost and local MonitoredVm
thurka [Wed, 07 Jan 2009 14:06:04 +0100] rev 1767
6790467: Add test for setInterval() for local MonitoredHost and local MonitoredVm Summary: test for MonitoredHost.setInterval() and MonitoredVm.setInterval() added Reviewed-by: swamyv
Fri, 09 Jan 2009 21:54:17 -0800 Merge
tbell [Fri, 09 Jan 2009 21:54:17 -0800] rev 1766
Merge
Mon, 22 Dec 2008 19:28:49 +0000 6787009: (attach) Stub injection potentially unsafe on windows-x64
alanb [Mon, 22 Dec 2008 19:28:49 +0000] rev 1765
6787009: (attach) Stub injection potentially unsafe on windows-x64 Reviewed-by: mchung
Fri, 19 Dec 2008 22:07:37 -0800 Merge
tbell [Fri, 19 Dec 2008 22:07:37 -0800] rev 1764
Merge
Fri, 19 Dec 2008 10:35:56 +0800 6750401: SSL stress test with GF leads to 32 bit max process size in less than 5 minutes,with PCKS11 provider
wetmore [Fri, 19 Dec 2008 10:35:56 +0800] rev 1763
6750401: SSL stress test with GF leads to 32 bit max process size in less than 5 minutes,with PCKS11 provider Summary: This is the JSSE portion of the fix. Main part is in PKCS11. Reviewed-by: valeriep, xuelei
Wed, 17 Dec 2008 22:50:37 -0800 6496274: jar seems to use more CPU than it should
sherman [Wed, 17 Dec 2008 22:50:37 -0800] rev 1762
6496274: jar seems to use more CPU than it should Summary: boost jar creating performance especially for the large jar file Reviewed-by: martin
Thu, 15 Jan 2009 11:46:36 -0800 Added tag jdk7-b43 for changeset ab58fd13ab49
xdono [Thu, 15 Jan 2009 11:46:36 -0800] rev 1761
Added tag jdk7-b43 for changeset ab58fd13ab49
Wed, 05 Jul 2017 16:45:22 +0200 Merge
duke [Wed, 05 Jul 2017 16:45:22 +0200] rev 1760
Merge
Thu, 15 Jan 2009 11:46:26 -0800 Added tag jdk7-b43 for changeset a0e6196f0e90
xdono [Thu, 15 Jan 2009 11:46:26 -0800] rev 1759
Added tag jdk7-b43 for changeset a0e6196f0e90
Thu, 15 Jan 2009 11:46:22 -0800 Added tag jdk7-b43 for changeset 2d231505b363
xdono [Thu, 15 Jan 2009 11:46:22 -0800] rev 1758
Added tag jdk7-b43 for changeset 2d231505b363
Wed, 05 Jul 2017 16:45:14 +0200 Added tag jdk7-b43 for changeset 41bd0a702bc8
duke [Wed, 05 Jul 2017 16:45:14 +0200] rev 1757
Added tag jdk7-b43 for changeset 41bd0a702bc8
Wed, 05 Jul 2017 16:45:14 +0200 Merge jdk7-b43
duke [Wed, 05 Jul 2017 16:45:14 +0200] rev 1756
Merge
Wed, 05 Jul 2017 16:45:11 +0200 Merge
duke [Wed, 05 Jul 2017 16:45:11 +0200] rev 1755
Merge
Fri, 19 Dec 2008 10:39:02 -0800 Merge
tbell [Fri, 19 Dec 2008 10:39:02 -0800] rev 1754
Merge
Fri, 05 Dec 2008 21:59:59 -0800 Merge
tbell [Fri, 05 Dec 2008 21:59:59 -0800] rev 1753
Merge
Tue, 02 Dec 2008 14:35:22 -0800 6778638: javadoc regression tests require tabs
jjg [Tue, 02 Dec 2008 14:35:22 -0800] rev 1752
6778638: javadoc regression tests require tabs Reviewed-by: darcy
Thu, 18 Dec 2008 21:34:20 -0800 Added tag jdk7-b42 for changeset f5855e0473e3
xdono [Thu, 18 Dec 2008 21:34:20 -0800] rev 1751
Added tag jdk7-b42 for changeset f5855e0473e3
Wed, 05 Jul 2017 16:45:08 +0200 Merge
duke [Wed, 05 Jul 2017 16:45:08 +0200] rev 1750
Merge
Thu, 18 Dec 2008 21:34:08 -0800 Added tag jdk7-b42 for changeset 180d45acc127
xdono [Thu, 18 Dec 2008 21:34:08 -0800] rev 1749
Added tag jdk7-b42 for changeset 180d45acc127
Wed, 05 Jul 2017 16:45:05 +0200 Merge
duke [Wed, 05 Jul 2017 16:45:05 +0200] rev 1748
Merge
Thu, 18 Dec 2008 21:34:07 -0800 Added tag jdk7-b42 for changeset fccef3af5757
xdono [Thu, 18 Dec 2008 21:34:07 -0800] rev 1747
Added tag jdk7-b42 for changeset fccef3af5757
Wed, 05 Jul 2017 16:45:03 +0200 Merge
duke [Wed, 05 Jul 2017 16:45:03 +0200] rev 1746
Merge
Thu, 18 Dec 2008 21:34:00 -0800 Added tag jdk7-b42 for changeset fc350fcb122a
xdono [Thu, 18 Dec 2008 21:34:00 -0800] rev 1745
Added tag jdk7-b42 for changeset fc350fcb122a
Wed, 05 Jul 2017 16:45:00 +0200 Merge
duke [Wed, 05 Jul 2017 16:45:00 +0200] rev 1744
Merge
Tue, 06 Jan 2009 16:24:03 -0800 Merge
lana [Tue, 06 Jan 2009 16:24:03 -0800] rev 1743
Merge
Mon, 08 Dec 2008 19:49:34 -0800 Merge
lana [Mon, 08 Dec 2008 19:49:34 -0800] rev 1742
Merge
Mon, 08 Dec 2008 17:04:22 -0800 6772137: D3D: Dragging the scroll bar of a JScrollPane containing a JTree causes incorrect red
tdv [Mon, 08 Dec 2008 17:04:22 -0800] rev 1741
6772137: D3D: Dragging the scroll bar of a JScrollPane containing a JTree causes incorrect red Reviewed-by: campbell
Mon, 08 Dec 2008 10:23:53 -0800 6665212: PrinterJob class, method lookupStreamPrintServices(), "fos" in docs is unknown
jgodinez [Mon, 08 Dec 2008 10:23:53 -0800] rev 1740
6665212: PrinterJob class, method lookupStreamPrintServices(), "fos" in docs is unknown Reviewed-by: tdv, prr
Thu, 04 Dec 2008 11:21:26 -0800 6708580: Java applications slow when EXA enabled
tdv [Thu, 04 Dec 2008 11:21:26 -0800] rev 1739
6708580: Java applications slow when EXA enabled Reviewed-by: prr, tdv Contributed-by: ceisserer <linuxhippy@gmail.com>
Thu, 04 Dec 2008 10:05:36 -0800 6587245: Import declaration not used in sun.print.*
jgodinez [Thu, 04 Dec 2008 10:05:36 -0800] rev 1738
6587245: Import declaration not used in sun.print.* Reviewed-by: tdv, prr
Tue, 25 Nov 2008 14:38:36 -0800 6653384: Variable "initialized" in class CUPSPrinter is static by mistake
jgodinez [Tue, 25 Nov 2008 14:38:36 -0800] rev 1737
6653384: Variable "initialized" in class CUPSPrinter is static by mistake Reviewed-by: tdv, prr
Tue, 18 Nov 2008 18:32:31 -0800 6757527: D3D: serious rendering issues on Nvidia boards with driver version 178.13 on Vista
tdv [Tue, 18 Nov 2008 18:32:31 -0800] rev 1736
6757527: D3D: serious rendering issues on Nvidia boards with driver version 178.13 on Vista Reviewed-by: campbell
Tue, 18 Nov 2008 17:16:27 -0800 6758179: D3D: AlphaComposite is applied incorrectly for uncached opaque BufferedImage
tdv [Tue, 18 Nov 2008 17:16:27 -0800] rev 1735
6758179: D3D: AlphaComposite is applied incorrectly for uncached opaque BufferedImage Reviewed-by: campbell, flar
Sat, 01 Nov 2008 20:42:18 +0300 6541476: PNG imageio plugin incorrectly handles iTXt chunk
bae [Sat, 01 Nov 2008 20:42:18 +0300] rev 1734
6541476: PNG imageio plugin incorrectly handles iTXt chunk Reviewed-by: igor, prr
Wed, 29 Oct 2008 01:52:22 +0300 6761856: OpenJDK: vertical text metrics may be significanly different from those returned by Sun JDK
igor [Wed, 29 Oct 2008 01:52:22 +0300] rev 1733
6761856: OpenJDK: vertical text metrics may be significanly different from those returned by Sun JDK Reviewed-by: bae, prr
Tue, 28 Oct 2008 14:47:14 -0700 6764257: D3D/OGL: color is not reset properly after save/restoreState() [RSL]
tdv [Tue, 28 Oct 2008 14:47:14 -0700] rev 1732
6764257: D3D/OGL: color is not reset properly after save/restoreState() [RSL] Reviewed-by: campbell
Tue, 28 Oct 2008 14:40:58 -0700 6764543: SIGSEGV in libfontconfig.so starting from jdk7b33
prr [Tue, 28 Oct 2008 14:40:58 -0700] rev 1731
6764543: SIGSEGV in libfontconfig.so starting from jdk7b33 Reviewed-by: campbell, igor
Tue, 21 Oct 2008 08:25:38 -0700 6755274: 6u10b33 2d tests fails on sles10x64 with jvm crash
tdv [Tue, 21 Oct 2008 08:25:38 -0700] rev 1730
6755274: 6u10b33 2d tests fails on sles10x64 with jvm crash Reviewed-by: campbell
Mon, 20 Oct 2008 11:52:47 -0700 Merge
lana [Mon, 20 Oct 2008 11:52:47 -0700] rev 1729
Merge
Thu, 16 Oct 2008 06:28:37 -0700 6751616: outline for underline in TextLayout with underline is off rasterized underline
prr [Thu, 16 Oct 2008 06:28:37 -0700] rev 1728
6751616: outline for underline in TextLayout with underline is off rasterized underline Reviewed-by: dougfelt, igor
Mon, 13 Oct 2008 15:41:31 -0700 6732647: isAttributeValueSupported() is not consistant with getSupportedValues() for Copies, TEXT flavor
jgodinez [Mon, 13 Oct 2008 15:41:31 -0700] rev 1727
6732647: isAttributeValueSupported() is not consistant with getSupportedValues() for Copies, TEXT flavor Reviewed-by: tdv, prr
Thu, 09 Oct 2008 17:12:50 -0700 6749060: LCD AA text rendered incorrectly when destination is non opaque (sw pipeline only)
tdv [Thu, 09 Oct 2008 17:12:50 -0700] rev 1726
6749060: LCD AA text rendered incorrectly when destination is non opaque (sw pipeline only) Reviewed-by: campbell, prr
Wed, 24 Sep 2008 11:58:21 -0700 6751621: TextLayout.getBounds() doesn't account for strike through
prr [Wed, 24 Sep 2008 11:58:21 -0700] rev 1725
6751621: TextLayout.getBounds() doesn't account for strike through Reviewed-by: igor, dougfelt
Fri, 12 Sep 2008 15:01:45 -0700 6748082: remove platform-specific code from SwingUtilities2.isDisplayLocal
tdv [Fri, 12 Sep 2008 15:01:45 -0700] rev 1724
6748082: remove platform-specific code from SwingUtilities2.isDisplayLocal Reviewed-by: prr, tdv Contributed-by: rkennke@kennke.org
Thu, 28 Aug 2008 11:27:14 -0700 6739267: D3D/OGL: add missing ThreeByteBgr to texture upload blit loop
tdv [Thu, 28 Aug 2008 11:27:14 -0700] rev 1723
6739267: D3D/OGL: add missing ThreeByteBgr to texture upload blit loop Reviewed-by: campbell, flar
Tue, 19 Aug 2008 16:04:06 -0700 6731826: race condition in UnixPrintServiceLookup
jgodinez [Tue, 19 Aug 2008 16:04:06 -0700] rev 1722
6731826: race condition in UnixPrintServiceLookup Reviewed-by: campbell, tdv
Thu, 07 Aug 2008 22:24:26 -0700 Merge
lana [Thu, 07 Aug 2008 22:24:26 -0700] rev 1721
Merge
Thu, 07 Aug 2008 11:19:06 -0700 6731937: javax/print/CheckDupFlavor.java fails
jgodinez [Thu, 07 Aug 2008 11:19:06 -0700] rev 1720
6731937: javax/print/CheckDupFlavor.java fails Reviewed-by: campbell, tdv
Tue, 05 Aug 2008 09:37:03 -0700 6733718: test /java/awt/FullScreen/UninitializedDisplayModeChangeTest/ fails
tdv [Tue, 05 Aug 2008 09:37:03 -0700] rev 1719
6733718: test /java/awt/FullScreen/UninitializedDisplayModeChangeTest/ fails Reviewed-by: igor
Mon, 04 Aug 2008 11:31:46 -0700 6717988: D3D: rendering problems with JConsole on [Nvidia FX 5200]
tdv [Mon, 04 Aug 2008 11:31:46 -0700] rev 1718
6717988: D3D: rendering problems with JConsole on [Nvidia FX 5200] Reviewed-by: campbell
Mon, 04 Aug 2008 11:29:28 -0700 6728834: D3D/OGL: LCD AA text becomes bold and blurred when rendering to a non-opaque destination
tdv [Mon, 04 Aug 2008 11:29:28 -0700] rev 1717
6728834: D3D/OGL: LCD AA text becomes bold and blurred when rendering to a non-opaque destination Reviewed-by: campbell
Mon, 04 Aug 2008 18:50:43 +0400 4356282: RFE: T2K should be used to rasterize CID/CFF fonts
igor [Mon, 04 Aug 2008 18:50:43 +0400] rev 1716
4356282: RFE: T2K should be used to rasterize CID/CFF fonts Reviewed-by: bae, prr
Fri, 25 Jul 2008 14:46:38 +0400 6687968: PNGImageReader leaks native memory through an Inflater.
bae [Fri, 25 Jul 2008 14:46:38 +0400] rev 1715
6687968: PNGImageReader leaks native memory through an Inflater. Reviewed-by: igor, prr
Fri, 19 Dec 2008 10:37:50 -0800 Merge
tbell [Fri, 19 Dec 2008 10:37:50 -0800] rev 1714
Merge
Wed, 10 Dec 2008 14:03:15 -0800 6642323: Speeding up Single Byte Decoders
sherman [Wed, 10 Dec 2008 14:03:15 -0800] rev 1713
6642323: Speeding up Single Byte Decoders 6642328: Speeding up Single Byte Encoders Summary: re-implementation of mapping based sbcs charts Reviewed-by: alanb
Wed, 10 Dec 2008 11:59:32 +0100 6456269: Add a GenericMBeanException so clients don't have to have server's exception classes present
emcmanus [Wed, 10 Dec 2008 11:59:32 +0100] rev 1712
6456269: Add a GenericMBeanException so clients don't have to have server's exception classes present Reviewed-by: jfdenise, dfuchs
Tue, 09 Dec 2008 20:51:59 +0100 Merge
sjiang [Tue, 09 Dec 2008 20:51:59 +0100] rev 1711
Merge
Tue, 09 Dec 2008 20:50:45 +0100 6336980: NotificationBroadcasterSupport: to tell whether there are listeners and to do clear
sjiang [Tue, 09 Dec 2008 20:50:45 +0100] rev 1710
6336980: NotificationBroadcasterSupport: to tell whether there are listeners and to do clear Reviewed-by: emcmanus
Tue, 09 Dec 2008 20:20:48 +0100 6768935: Clarify the behaviour of ObjectName pattern matching with regards to namespaces
dfuchs [Tue, 09 Dec 2008 20:20:48 +0100] rev 1709
6768935: Clarify the behaviour of ObjectName pattern matching with regards to namespaces Reviewed-by: emcmanus
Tue, 09 Dec 2008 19:44:22 +0100 6332907: Add ability for connector server to close individual connections
sjiang [Tue, 09 Dec 2008 19:44:22 +0100] rev 1708
6332907: Add ability for connector server to close individual connections Reviewed-by: emcmanus
Tue, 09 Dec 2008 18:45:09 +0100 Merge
sjiang [Tue, 09 Dec 2008 18:45:09 +0100] rev 1707
Merge
Tue, 09 Dec 2008 18:42:13 +0100 6760712: Provide a connector server option that causes it not to prevent the VM from exiting
sjiang [Tue, 09 Dec 2008 18:42:13 +0100] rev 1706
6760712: Provide a connector server option that causes it not to prevent the VM from exiting Reviewed-by: emcmanus
Tue, 09 Dec 2008 18:30:27 +0100 6780803: Wrong parameter name in description of EventClient::addListeners()
emcmanus [Tue, 09 Dec 2008 18:30:27 +0100] rev 1705
6780803: Wrong parameter name in description of EventClient::addListeners() 6470295: Misleading exception message says context classloader when it isn't 6714954: Description of MBeanPermission checking in MBeanServer javadoc is inaccurate 6732037: Event Service spec needs more detail about Executor use 6740900: Specify that listeners invoked via SendNotification should not block 6778436: Typo in @NotificationInfos spec Reviewed-by: dfuchs
Tue, 09 Dec 2008 17:41:59 +0100 Merge
sjiang [Tue, 09 Dec 2008 17:41:59 +0100] rev 1704
Merge
Tue, 09 Dec 2008 17:41:04 +0100 6405891: MLet: could be improved to load a native lib
sjiang [Tue, 09 Dec 2008 17:41:04 +0100] rev 1703
6405891: MLet: could be improved to load a native lib Reviewed-by: emcmanus
Tue, 09 Dec 2008 16:26:30 +0100 6287328: Add methods to StandardMBean to retrieve a method based on MBean{Attribute|Operation}Info
jfdenise [Tue, 09 Dec 2008 16:26:30 +0100] rev 1702
6287328: Add methods to StandardMBean to retrieve a method based on MBean{Attribute|Operation}Info Reviewed-by: emcmanus
Tue, 09 Dec 2008 16:14:53 +0100 6450834: RFE: allow StandardMBean to call MBeanRegistration methods on its wrapped resource
jfdenise [Tue, 09 Dec 2008 16:14:53 +0100] rev 1701
6450834: RFE: allow StandardMBean to call MBeanRegistration methods on its wrapped resource 6373143: MonitorNotification should have a public constructor Reviewed-by: emcmanus
Tue, 09 Dec 2008 15:57:09 +0100 6675526: Define an Annotation to name registered MBeans
jfdenise [Tue, 09 Dec 2008 15:57:09 +0100] rev 1700
6675526: Define an Annotation to name registered MBeans Reviewed-by: emcmanus
Tue, 09 Dec 2008 15:36:14 +0100 6250014: MBeanOperationInfo Descriptor field for exceptions
jfdenise [Tue, 09 Dec 2008 15:36:14 +0100] rev 1699
6250014: MBeanOperationInfo Descriptor field for exceptions Reviewed-by: emcmanus
Tue, 09 Dec 2008 14:44:42 +0100 6501362: DescriptorSupport(String) could recognize "name=value" as well as XML format
jfdenise [Tue, 09 Dec 2008 14:44:42 +0100] rev 1698
6501362: DescriptorSupport(String) could recognize "name=value" as well as XML format Reviewed-by: emcmanus
Tue, 09 Dec 2008 12:01:07 +0100 6774918: @NotificationInfo is ineffective on MBeans that cannot send notifications
emcmanus [Tue, 09 Dec 2008 12:01:07 +0100] rev 1697
6774918: @NotificationInfo is ineffective on MBeans that cannot send notifications Reviewed-by: jfdenise
Fri, 05 Dec 2008 21:59:09 -0800 Merge
tbell [Fri, 05 Dec 2008 21:59:09 -0800] rev 1696
Merge
Fri, 05 Dec 2008 10:30:29 -0800 6750389: The cpuManufactorer does not correctly recognized for Solaris 10
mchung [Fri, 05 Dec 2008 10:30:29 -0800] rev 1695
6750389: The cpuManufactorer does not correctly recognized for Solaris 10 Summary: Fix the correct SMBIOS type (4) to obtain CPU manufacturer Reviewed-by: ksrini
Fri, 05 Dec 2008 10:28:15 -0800 6764062: Revise usage of java.io.*.close
mchung [Fri, 05 Dec 2008 10:28:15 -0800] rev 1694
6764062: Revise usage of java.io.*.close Summary: Handle closing multiple open I/O streams in case close() throws IOException Reviewed-by: ksrini
Thu, 04 Dec 2008 17:58:10 +0100 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs [Thu, 04 Dec 2008 17:58:10 +0100] rev 1693
6319823: new mbean register/unregister notification for groups of mbeans 6779698: Merge error caused duplicate example code in MBeanServerNotification Reviewed-by: emcmanus
Tue, 02 Dec 2008 14:53:52 -0800 6778613: Update javax.crypto.Cipher.getMaxAllowedKeyLength to point to proper Appendix after doc reorg
wetmore [Tue, 02 Dec 2008 14:53:52 -0800] rev 1692
6778613: Update javax.crypto.Cipher.getMaxAllowedKeyLength to point to proper Appendix after doc reorg Reviewed-by: mullan
Thu, 18 Dec 2008 21:34:12 -0800 Added tag jdk7-b42 for changeset a97859015238
xdono [Thu, 18 Dec 2008 21:34:12 -0800] rev 1691
Added tag jdk7-b42 for changeset a97859015238
Wed, 05 Jul 2017 16:44:50 +0200 Merge
duke [Wed, 05 Jul 2017 16:44:50 +0200] rev 1690
Merge
Sat, 20 Dec 2008 09:59:01 -0800 6787832: Bump Hotspot build number to 08
trims [Sat, 20 Dec 2008 09:59:01 -0800] rev 1689
6787832: Bump Hotspot build number to 08 Summary: Update the HS14 build number to 08 Reviewed-by: jcoomes
Sat, 20 Dec 2008 09:58:36 -0800 Merge
trims [Sat, 20 Dec 2008 09:58:36 -0800] rev 1688
Merge
Sat, 20 Dec 2008 00:45:18 -0800 Merge
xlu [Sat, 20 Dec 2008 00:45:18 -0800] rev 1687
Merge
Fri, 19 Dec 2008 14:40:28 -0800 6784100: getTimeNanos - CAS reduction
xlu [Fri, 19 Dec 2008 14:40:28 -0800] rev 1686
6784100: getTimeNanos - CAS reduction Summary: Get rid of the CAS loop in getTimeNanos to reduce coherence traffic on Solaris. Reviewed-by: acorn, kvn, ysr
Thu, 18 Dec 2008 17:28:41 -0800 6786340: hs14b09a pit: a lot of tests failed in "-server -Xcomp" on solaris-amd64 using fastdebug bits
poonam [Thu, 18 Dec 2008 17:28:41 -0800] rev 1685
6786340: hs14b09a pit: a lot of tests failed in "-server -Xcomp" on solaris-amd64 using fastdebug bits Summary: Fixes the nsk-jdi PIT failures introduced by fix for 6739363 Reviewed-by: kvn, coleenp
Fri, 19 Dec 2008 12:15:34 -0800 Merge
jmasa [Fri, 19 Dec 2008 12:15:34 -0800] rev 1684
Merge
Thu, 18 Dec 2008 10:54:01 -0800 6786188: par compact - "SplitALot" stress mode should fill to_space
jcoomes [Thu, 18 Dec 2008 10:54:01 -0800] rev 1683
6786188: par compact - "SplitALot" stress mode should fill to_space Reviewed-by: jmasa, tonyp
Thu, 18 Dec 2008 10:53:35 -0800 6784849: par compact - can fail when to_space is non-empty
jcoomes [Thu, 18 Dec 2008 10:53:35 -0800] rev 1682
6784849: par compact - can fail when to_space is non-empty Reviewed-by: jmasa, tonyp
Thu, 18 Dec 2008 01:27:04 -0800 6786195: many nsk.monitoring tests fail with -server -Xcomp
jcoomes [Thu, 18 Dec 2008 01:27:04 -0800] rev 1681
6786195: many nsk.monitoring tests fail with -server -Xcomp Summary: remove Universe::_fillerArrayKlassObj and associated code Reviewed-by: jmasa, tonyp
Thu, 18 Dec 2008 13:59:59 -0800 Merge
kvn [Thu, 18 Dec 2008 13:59:59 -0800] rev 1680
Merge
Thu, 18 Dec 2008 11:26:22 -0800 6787050: assert(n->in(0) == 0L,"no control") with UseCompressedOops on sparcv9
kvn [Thu, 18 Dec 2008 11:26:22 -0800] rev 1679
6787050: assert(n->in(0) == 0L,"no control") with UseCompressedOops on sparcv9 Summary: Relax the assert for Sparc. Reviewed-by: never
Wed, 17 Dec 2008 14:09:39 -0800 Merge
kvn [Wed, 17 Dec 2008 14:09:39 -0800] rev 1678
Merge
Tue, 16 Dec 2008 12:23:39 -0800 6782820: Server VM fails with "unhandled implicit exception in compiled code"
kvn [Tue, 16 Dec 2008 12:23:39 -0800] rev 1677
6782820: Server VM fails with "unhandled implicit exception in compiled code" Summary: Restore the code which sets a control edge for a klass load node. Reviewed-by: never
Mon, 15 Dec 2008 13:58:57 -0800 6653214: MemoryPoolMXBean.setUsageThreshold() does not support large heap sizes.
swamyv [Mon, 15 Dec 2008 13:58:57 -0800] rev 1676
6653214: MemoryPoolMXBean.setUsageThreshold() does not support large heap sizes. Reviewed-by: ysr, mchung
Sat, 20 Dec 2008 09:57:03 -0800 Merge
trims [Sat, 20 Dec 2008 09:57:03 -0800] rev 1675
Merge
Fri, 12 Dec 2008 19:55:26 -0800 6758234: if (k cond (a ? : b: c)) returns reversed answer if k is constant and b and c are longs
never [Fri, 12 Dec 2008 19:55:26 -0800] rev 1674
6758234: if (k cond (a ? : b: c)) returns reversed answer if k is constant and b and c are longs Reviewed-by: kvn, jrose
Fri, 12 Dec 2008 19:54:46 -0800 6757316: load_constant() produces a wrong long constant, with high a low words swapped
never [Fri, 12 Dec 2008 19:54:46 -0800] rev 1673
6757316: load_constant() produces a wrong long constant, with high a low words swapped Reviewed-by: rasbold, jrose, kvn
Fri, 12 Dec 2008 19:53:25 -0800 6767587: missing call to make_not_entrant after deoptimizing for patching volatiles
never [Fri, 12 Dec 2008 19:53:25 -0800] rev 1672
6767587: missing call to make_not_entrant after deoptimizing for patching volatiles Reviewed-by: rasbold, kvn
Fri, 12 Dec 2008 15:37:46 -0800 Merge
jmasa [Fri, 12 Dec 2008 15:37:46 -0800] rev 1671
Merge
Thu, 11 Dec 2008 12:05:21 -0800 6765954: par compact - stress mode for splitting young gen spaces
jcoomes [Thu, 11 Dec 2008 12:05:21 -0800] rev 1670
6765954: par compact - stress mode for splitting young gen spaces Reviewed-by: jmasa
Thu, 11 Dec 2008 12:05:14 -0800 6765745: par compact - allow young gen spaces to be split
jcoomes [Thu, 11 Dec 2008 12:05:14 -0800] rev 1669
6765745: par compact - allow young gen spaces to be split Reviewed-by: jmasa
Thu, 11 Dec 2008 12:05:08 -0800 6578152: fill_region_with_object has usability and safety issues
jcoomes [Thu, 11 Dec 2008 12:05:08 -0800] rev 1668
6578152: fill_region_with_object has usability and safety issues Reviewed-by: apetrusenko, ysr
Wed, 10 Dec 2008 23:46:10 -0800 6782457: CMS: Livelock in CompactibleFreeListSpace::block_size()
ysr [Wed, 10 Dec 2008 23:46:10 -0800] rev 1667
6782457: CMS: Livelock in CompactibleFreeListSpace::block_size() 6736295: SIGSEGV in product jvm, assertion "these are the only valid states during a mark sweep" in fastdebug Summary: Restructured the code in the perm gen allocation retry loop so as to avoid "safepoint-blocking" on locks, in this case the Heap_lock, while holding uninitialized allocated heap storage. Reviewed-by: apetrusenko, iveresov, jcoomes, jmasa, poonam
Fri, 12 Dec 2008 10:19:39 -0800 Merge
blacklion [Fri, 12 Dec 2008 10:19:39 -0800] rev 1666
Merge
Thu, 11 Dec 2008 03:22:04 -0800 6639341: sometimes contended-exit event comes after contended-entered on another thread
blacklion [Thu, 11 Dec 2008 03:22:04 -0800] rev 1665
6639341: sometimes contended-exit event comes after contended-entered on another thread Summary: DTrace probe "contended-exit" should be fired before unparking object, or context could be lost. Probe firing was moved to proper place. Reviewed-by: coleenp, kamg
Wed, 10 Dec 2008 15:14:29 -0800 6727377: VM stack guard pages on Windows should PAGE_READWRITE not PAGE_EXECUTE_READWRITE
coleenp [Wed, 10 Dec 2008 15:14:29 -0800] rev 1664
6727377: VM stack guard pages on Windows should PAGE_READWRITE not PAGE_EXECUTE_READWRITE Summary: Make reguard_stack change access to RW, not execute and use os::protect_memory with the new parameter when change needed to X. Reviewed-by: acorn, jcoomes
Thu, 11 Dec 2008 17:20:10 -0800 Merge
kvn [Thu, 11 Dec 2008 17:20:10 -0800] rev 1663
Merge
Tue, 09 Dec 2008 12:41:26 -0800 6771309: debugging AD files is difficult without #line directives in generated code
jrose [Tue, 09 Dec 2008 12:41:26 -0800] rev 1662
6771309: debugging AD files is difficult without #line directives in generated code Summary: more and better #line and #define directives in the generated code; ADLC itself accepts #line directives Reviewed-by: never, kvn
Mon, 08 Dec 2008 17:15:02 -0800 6779339: turn off LinkWellKnownClasses by default pending further testing
jrose [Mon, 08 Dec 2008 17:15:02 -0800] rev 1661
6779339: turn off LinkWellKnownClasses by default pending further testing Summary: temporarily turn off LinkWellKnownClasses optimization Reviewed-by: never, kvn
Tue, 09 Dec 2008 09:55:39 -0500 6689685: Hotspot crash error message should include libraries version
coleenp [Tue, 09 Dec 2008 09:55:39 -0500] rev 1660
6689685: Hotspot crash error message should include libraries version Summary: Print out JDK/JRE version that hotspot knows about. Reviewed-by: kamg, blacklion, acorn, alanb
(0) -1000 -256 +256 +1000 +3000 +10000 +30000 tip