Re: [cp-patches] RFC: merge ssl-nio-branch into generics-branch

2006-08-11 Thread Anthony Green
On Fri, 2006-08-11 at 19:17 -0700, Casey Marshall wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Hi all. > > The ssl-nio work is complete enough to the point where it can be merged > into the generics branch. Now that 0.92 has been released, this is a > good time to do that merge. I

[cp-patches] Re: FYI: PR 28580 - HTTP fixes...

2006-08-11 Thread Tom Tromey
> "David" == David Daney <[EMAIL PROTECTED]> writes: David> Do we want to bring this into libgcj before this would be David> imported also? It is fine by me if you want to do this. However, if we're going to import 0.92 it might be friendlier to wait for that to happen first. Last I heard, M

[cp-patches] RFC: merge ssl-nio-branch into generics-branch

2006-08-11 Thread Casey Marshall
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi all. The ssl-nio work is complete enough to the point where it can be merged into the generics branch. Now that 0.92 has been released, this is a good time to do that merge. I've accomplished three of the four goals I set out on this project, which

[cp-patches] FYI: Fix typos

2006-08-11 Thread Andrew John Hughes
This patch simply fixes a few typos in the documentation of one of the lang.management beans. Changelog: 2006-08-11 Andrew John Hughes <[EMAIL PROTECTED]> * vm/reference/gnu/java/lang/management/VMMemoryMXBeanImpl.java: Fix documentation typos. -- Andrew :-) Escape the Java

[cp-patches] [patch] native GdkPixbufDecoder cleanup some leaks

2006-08-11 Thread Andreas Tobler
Hi all, here a patchlet which needs a review. The first one seems obvious, the others are maybe looking for a more elegant way. Ideas? Here it saves in a little app around 400 bytes, yes I know, not much Thanks, Andreas 2006-08-11 Andreas Tobler <[EMAIL PROTECTED]> * native

[cp-patches] RFA: BandCombineOp

2006-08-11 Thread Francis Kung
Hi, Split this into two patches... this one fixes the BandCombineOp, mostly stuff to bring it in line with the reference implementation. Mauve tests have been committed for this class as well. Good to commit? Cheers, Francis 2006-08-11 Francis Kung <[EMAIL PROTECTED]> * java/awt/ima

[cp-patches] RFA: AffineCombineOp

2006-08-11 Thread Francis Kung
Hello, The attached patch gets java.awt.image.AffineTransformOp working and compatible with the reference implementation; mauve tests have also been committed for this class. I'm not sure if I have the best interpolation algorithms here (especially for bicubic) - it works, but it's slow... so if

[cp-patches] FYI: PR 28580 - HTTP fixes...

2006-08-11 Thread David Daney
I just committed the fix for PR 28580 to classpath. The problem was that in cases where there is no response body, a persistent connection would never be returned to the connection pool. Also if you tried to read a body from a HEAD request where the server indicated chucked-encoding, the read

Re: [cp-patches] FYI: AccessControlContext speedup

2006-08-11 Thread Tom Tromey
> "Gary" == Gary Benson <[EMAIL PROTECTED]> writes: Gary> This commit avoids calling AccessController.getContext() twice when Gary> creating an AccessControlContext with a security manager enabled. Gary> I've been using BC-compiled Tomcat on gcj to benchmark the security Gary> stuff, and this

[cp-patches] FYI: PlainView fixes

2006-08-11 Thread Roman Kennke
This fixes PlainView's tab support and viewToModel/modelToView mapping according to Intel's testsuite. 2006-08-11 Roman Kennke <[EMAIL PROTECTED]> * javax/swing/text/PlainView.java (tabBase): New field. (tabSize): New field. (updateMetrics): Update tabSize.

[cp-patches] FYI: GapContent fixes

2006-08-11 Thread Roman Kennke
This fixes Undo/Redo support in GapContent. We need to reset all the positions in removed text areas after an undo/redo. The implementation is tested against Intel's testsuite (we now pass all the tests in Intel's and Mauve suite for GapContent :-D). 2006-08-11 Roman Kennke <[EMAIL PROTECTED

[cp-patches] FYI: ObjectInputStream bug fix

2006-08-11 Thread Jeroen Frijters
Hi, An IKVM user reported a problem with RMI. I debugged it and it turned out that ObjectInputStream was using the incorrect class loader to try and load the field types. Fixed by the attached patch (already committed). Note that the ObjectStreamField(String,String) constructor was previously unu