hg: jdk7/tl/jdk: 6920732: opensource test/java/nio/charset

2010-01-27 Thread xueming . shen
Changeset: 946b30073247 Author:sherman Date: 2010-01-27 19:39 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/946b30073247 6920732: opensource test/java/nio/charset Summary: move the test cases to openjdk Reviewed-by: martin + test/java/nio/charset/Charset/AvailableCharsetNam

hg: jdk7/tl/langtools: 3 new changesets

2010-01-27 Thread lana . steuck
Changeset: 250a580ab046 Author:mikejwre Date: 2010-01-21 11:12 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/250a580ab046 Added tag jdk7-b80 for changeset f0074aa48d4e ! .hgtags Changeset: cfabfcf9f110 Author:lana Date: 2010-01-22 09:34 -0800 URL: http

hg: jdk7/tl/jdk: 28 new changesets

2010-01-27 Thread lana . steuck
Changeset: 9956e8d71e06 Author:tbell Date: 2009-12-18 09:40 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/9956e8d71e06 6899737: JDK build fails in make/java/jli because of _vsnprintf macro redefinition Summary: Use stdio.h instead when building with Visual Studio 2008 or la

hg: jdk7/tl/jaxws: Added tag jdk7-b80 for changeset 447767dee56a

2010-01-27 Thread lana . steuck
Changeset: f051045fe94a Author:mikejwre Date: 2010-01-21 11:12 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/f051045fe94a Added tag jdk7-b80 for changeset 447767dee56a ! .hgtags

hg: jdk7/tl/jaxp: Added tag jdk7-b80 for changeset 9219574db593

2010-01-27 Thread lana . steuck
Changeset: 204e59d488cd Author:mikejwre Date: 2010-01-21 11:12 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/204e59d488cd Added tag jdk7-b80 for changeset 9219574db593 ! .hgtags

hg: jdk7/tl/hotspot: 34 new changesets

2010-01-27 Thread lana . steuck
Changeset: 40e7c1d24e4a Author:twisti Date: 2010-01-04 00:22 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/40e7c1d24e4a 6909153: Fix broken options on Zero Summary: Smaller fixes to ensure that Zero still works with non-standard options. Reviewed-by: twisti Contributed-

hg: jdk7/tl/corba: 3 new changesets

2010-01-27 Thread lana . steuck
Changeset: d4c077d44a64 Author:andrew Date: 2010-01-16 01:04 + URL: http://hg.openjdk.java.net/jdk7/tl/corba/rev/d4c077d44a64 6917485: Corba doc warnings Summary: Fix warnings generated by javadoc Reviewed-by: darcy ! src/share/classes/com/sun/tools/corba/se/idl/constExpr/Expre

hg: jdk7/tl: 3 new changesets

2010-01-27 Thread lana . steuck
Changeset: 432cbbdc44bc Author:andrew Date: 2010-01-07 23:17 + URL: http://hg.openjdk.java.net/jdk7/tl/rev/432cbbdc44bc 6914986: Make sure openjdk doc generation not turned off with JDK_UPDATE_VERSION Summary: Only turn off documentation for updates when not building OpenJDK Rev

hg: jdk7/tl/jdk: 6920143: test/java/awt/TestArea/UsingWithMouse.java needs realSync()

2010-01-27 Thread ptisnovs
Changeset: 4192f6edbbf4 Author:ptisnovs Date: 2010-01-27 17:47 +0100 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/4192f6edbbf4 6920143: test/java/awt/TestArea/UsingWithMouse.java needs realSync() Summary: Added small delay to make sure that TextArea animation have finished Review

hg: jdk7/tl/jdk: 6905552: libnet/nio portability issues

2010-01-27 Thread christopher . hegarty
Changeset: 8df0ffac7f4d Author:chegar Date: 2010-01-27 16:11 + URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/8df0ffac7f4d 6905552: libnet/nio portability issues Reviewed-by: alanb ! src/share/native/java/net/net_util.c ! src/solaris/native/java/net/Inet4AddressImpl.c ! src/so

Re: Request for Review: 6905552

2010-01-27 Thread Alan Bateman
Christopher Hegarty - Sun Microsystems Ireland wrote: : What we found is that on Solaris if an interface has only IPv6 addresses assigned to it, then you need to use a socket created with AF_INET6 when querying the ioclt. By default, we always try to with an AF_INET socket first and on Solaris

Re: Request for Review: 6905552

2010-01-27 Thread Christopher Hegarty - Sun Microsystems Ireland
On 27/01/2010 14:55, Alan Bateman wrote: Christopher Hegarty - Sun Microsystems Ireland wrote: Hi Alan, Michael, Since we don't typically build on non-IPv6 systems, over a number of years the net/nio code has not maintained clean non-IPv6 code. This patch addresses that by excluding IPv6 spec

Re: Request for Review: 6905552

2010-01-27 Thread Alan Bateman
Christopher Hegarty - Sun Microsystems Ireland wrote: Hi Alan, Michael, Since we don't typically build on non-IPv6 systems, over a number of years the net/nio code has not maintained clean non-IPv6 code. This patch addresses that by excluding IPv6 specific code where AF_INET6 is not defined.