Andrew John Hughes
9a5d0532c5
6869697: Missing entry in makefiles for java/lang/ReflectiveOperationException.java
...
Add new dependency explicitly so all compilers pick it up
Reviewed-by: darcy, ohair
2009-08-07 18:15:03 +01:00
Abhijit Saha
658feaa3e4
Merge
2009-08-07 09:21:25 -07:00
Chris Hegarty
aca1227406
6826801: JarFileFactory should not use HashMap<URL>
...
Replace URL with a String representation.
Reviewed-by: michaelm, jccollet
2009-08-07 10:51:25 +01:00
Chris Hegarty
75379fe244
6826780: URLClassPath should use HashMap<String, XXX> instead of HashMap<URL, XXX>
...
Replace URL with a String representation.
Reviewed-by: michaelm, jccollet
2009-08-07 10:50:26 +01:00
Abhijit Saha
7ebb690ec3
Merge
2009-08-06 22:37:58 -07:00
Tim Bell
f98b97ffea
Merge
2009-08-06 19:01:59 -07:00
John R Rose
d8b50037de
6838598: Legal notice repair: jdk/src/share/classes/sun/dyn/FilterGeneric.java
...
Reviewed-by: xdono
2009-08-06 18:30:33 -07:00
Bradford Wetmore
fc188b8b29
6867657: Many JSN tests do not run under cygwin
...
Reviewed-by: ohair
2009-08-06 17:56:59 -07:00
Xiomara Jayasena
6ceaf265fd
Added tag jdk7-b68 for changeset a02edc83f1b4
2009-08-06 10:25:18 -07:00
Abhijit Saha
afe5efd931
Merge
2009-08-05 14:16:34 -07:00
Daniel D. Daugherty
8790c489e1
6868533: 3/4 JDI: remove '-source 1.5' and '-target 1.5' options from com.sun.jdi tests
...
We are long past needing to make sure these tests can build on Tiger/JDK1.5.0.
Reviewed-by: tbell
2009-08-05 13:17:30 -06:00
Xiomara Jayasena
4e09ef7579
Merge
2009-08-05 11:06:46 -07:00
Yuri Nesterenko
bc02d891d1
Merge
2009-08-05 00:07:48 -07:00
Martin Buchholz
31e53b285c
6856590: (process) Use RESTARTABLE in UNIXProcess_md.c
...
Wrap all system calls with RESTARTABLE
Reviewed-by: michaelm
2009-08-04 19:18:15 -07:00
Martin Buchholz
c857f977c3
6868160: (process) Use vfork, not fork, on Linux to avoid swap exhaustion
...
Boldly go where no jdk has dared go before
Reviewed-by: michaelm
2009-08-04 19:18:15 -07:00
Xueming Shen
6dfe09a9a6
4116222: Errors in Arabic code-conversion tables, part II
...
Updated the IBM420 datatable
Reviewed-by: alanb
2009-08-04 12:44:03 -07:00
Abhijit Saha
8c4325e8f4
Merge
2009-08-04 08:01:03 -07:00
Bradford Wetmore
7bf6422983
6647452: Remove obfuscation, framework and provider self-verification checking
...
Reviewed-by: valeriep, vinnie
2009-08-03 18:06:51 -07:00
Tim Bell
2f8af77fdb
Merge
2009-08-02 10:07:06 -07:00
Weijun Wang
3fef36803a
6867687: keytool's standard.sh test timeout sometimes
...
Reviewed-by: xuelei
2009-08-02 13:40:03 +08:00
Tim Bell
6b6386f999
Merge
2009-07-31 17:19:38 -07:00
Alan Bateman
68c91249fb
Merge
2009-07-31 19:23:10 +01:00
Weijun Wang
bdafe7ca74
6867231: Regression: jdk/test/sun/security/krb5/ConfPlusProp.java error against jdk7/pit/b68
...
Reviewed-by: xuelei
2009-07-31 16:21:30 +08:00
Alan Bateman
6538a1bcf9
6867244: Tests missing @run tag
...
Reviewed-by: sherman
2009-07-31 08:45:30 +01:00
Alan Bateman
08f07d0f8a
6867101: Path.checkAccess fails with sharing violation on special files such as pagefile.sys
...
Reviewed-by: sherman
2009-07-31 08:44:28 +01:00
Tim Bell
35107a8833
Merge
2009-07-30 23:40:15 -07:00
Xiomara Jayasena
b097c4f9bb
Added tag jdk7-b67 for changeset db82a42da273
2009-07-30 10:58:38 -07:00
Martin Buchholz
2d83195be5
6866719: Rename execvpe to avoid symbol clash with glibc 2.10
...
Reviewed-by: darcy
2009-07-29 21:45:52 -07:00
Josh Bloch
827200b265
6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
...
Easy port of timsort from android
Reviewed-by: martin
2009-07-29 14:24:19 -07:00
Martin Buchholz
36736be8ba
6866554: Misc. javadoc warnings
...
Reviewed-by: alanb
2009-07-29 13:56:15 -07:00
Jonathan Gibbons
a3128d7e74
6865753: 6854244 breaks partial (jdk-only) builds
...
Makefiles which set -target 5 now need to set -source 5 as well.
Reviewed-by: wetmore, tbell
2009-07-29 12:50:10 -07:00
Xueming Shen
ba2db6a2db
Merge
2009-07-29 11:19:14 -07:00
Yuri Nesterenko
b797a234b8
Merge
2009-07-29 00:14:56 -07:00
Yuri Nesterenko
a65646a1fb
Merge
2009-07-29 00:12:45 -07:00
Doug Lea
d43e798981
6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
...
6815766: LinkedBlockingQueue's iterator can return null if drainTo(c) executes concurrently
Faster, more correct. Use self-linking trick to avoid gc retention
Reviewed-by: martin, dholmes
2009-07-28 17:17:55 -07:00
Doug Lea
df5da31f55
6785442: ConcurrentLinkedQueue.remove() and poll() can both remove the same element
...
6493942: ConcurrentLinkedQueue.remove sometimes very slow
New algorithm for handling concurrent linked lists
Reviewed-by: martin
2009-07-28 13:24:52 -07:00
Xiomara Jayasena
e0c1d51604
6862919: Update copyright year
...
Update copyright for files that have been modified in 2009, up to 07/09
Reviewed-by: tbell, ohair
2009-07-28 12:12:54 -07:00
Sergey Malenkov
c1073a5d61
6864297: Right-to-left oriented JScrollPane is aligned to the wrong direction while resizing the container
...
Reviewed-by: peterz
2009-07-28 13:10:14 +04:00
Yuri Nesterenko
f169709382
Merge
2009-07-27 23:42:52 -07:00
Tim Bell
9d2c02479e
Merge
2009-07-27 23:06:01 -07:00
Abhijit Saha
0e8d2a916a
Merge
2009-07-27 22:28:29 -07:00
Xue-Lei Andrew Fan
e364d187ea
6865482: test case BalancedParentheses.java is missing GPL header
...
Reviewed-by: weijun
2009-07-28 11:15:49 +08:00
Jonathan Gibbons
50dfd0ebd9
6854244: change source/target used to compile JDK to 7
...
Reviewed-by: ohair
2009-07-27 15:19:55 -07:00
Alan Bateman
19093784f4
6864319: (fs) Eliminate static dependency on fdopendir (lnx)
...
Reviewed-by: martin
2009-07-27 19:22:11 +01:00
Alan Bateman
86a40825c7
6863667: (ch) Several tests in java/nio/channels/* need to be updated after 6638712
...
Reviewed-by: mcimadamore
2009-07-27 18:46:50 +01:00
Alan Bateman
22fac524b1
6863864: (fs) Path.createSymbolicLink doesn't set directory flag when creating sym link to directory (win)
...
Reviewed-by: sherman
2009-07-27 18:44:42 +01:00
Xue-Lei Andrew Fan
a51137d942
6449574: Invalid ldap filter is accepted and processed
...
Reviewed-by: vinnie
2009-07-27 22:04:07 +08:00
Dmitry Cherepanov
642a5040a0
6856929: Frame is not getting resized using Robot in OpenSolaris and Ubuntu
...
Reviewed-by: art, dav
2009-07-27 15:37:39 +04:00
Yuri Nesterenko
3f6ce374d9
Merge
2009-07-27 03:42:47 -07:00
Yong Jeffrey Huang
800a49f4a0
Merge
2009-07-26 19:51:05 -07:00