Re: [Fwd: [classlib][NIO|VMI]Interruptible channel implementation - how to interact with Thread?]

2006-06-17 Thread Andrew Zhang
On 6/17/06, Archie Cobbs [EMAIL PROTECTED] wrote: Paulex Yang wrote: In Classpath, if select(2) returns EINTR, the select just returns normally (with nothing selected) and then the code checks Thread.interrupted(). If set, it closes and throws the exception as necessary. Yes I noticed that

Re: [drlvm] build - first round done

2006-06-17 Thread Geir Magnusson Jr
Rana Dasgupta wrote: On 6/16/06, Gregory Shimansky [EMAIL PROTECTED] wrote: Also, are we incrementally fixing all the 1.5 related issues as we find them? This is not exactly 1.5 issue yet. It is 1.5 classlib compiled as 1.4issue :) Actually there is a question of whether we want the

Re: [drlvm] build - first round done

2006-06-17 Thread Geir Magnusson Jr
Gregory Shimansky wrote: On Friday 16 June 2006 22:31 Rana Dasgupta wrote: Also, are we incrementally fixing all the 1.5 related issues as we find them? This is not exactly 1.5 issue yet. It is 1.5 classlib compiled as 1.4 issue :) I don't understand that statement. These changes are

[RESULT] Re: [VOTE] Acceptance of Harmony-528 : AWT, Java2D and Swing

2006-06-17 Thread Geir Magnusson Jr
+1 from Geir, Stefano, Etienne, Mikhail, Nathan, Dims, Mark, Enrico, George, Oliver, David, Stepan, Tim, Dan No 0 or -1 I'm going to unassign from me until I finish the other things I'm doing. I'll put it in unless someone beats me to it :) geir Geir Magnusson Jr wrote: I have received the

Re: [drlvm] build - first round done

2006-06-17 Thread Rana Dasgupta
Pls see below... On 6/17/06, Geir Magnusson Jr [EMAIL PROTECTED] wrote: In which case, we may be better off updating DRLVM to handle the full 1.5 compile instead of doing these hardloads. What is a hardload? Typo :-) hardcoding the creation of the lang/Class superinterfaces. And

Re: [drlvm] build - first round done

2006-06-17 Thread Gregory Shimansky
On Saturday 17 June 2006 14:07 Geir Magnusson Jr wrote: Gregory Shimansky wrote: On Friday 16 June 2006 22:31 Rana Dasgupta wrote: Also, are we incrementally fixing all the 1.5 related issues as we find them? This is not exactly 1.5 issue yet. It is 1.5 classlib compiled as 1.4 issue

Re: [drlvm] build - first round done

2006-06-17 Thread Geir Magnusson Jr
Rana Dasgupta wrote: Pls see below... On 6/17/06, Geir Magnusson Jr [EMAIL PROTECTED] wrote: In which case, we may be better off updating DRLVM to handle the full 1.5 compile instead of doing these hardloads. What is a hardload? Typo :-) hardcoding the creation of the

[classlib] tests.api.java.io.FileTest failures on Windows XP

2006-06-17 Thread Nathan Beyer
Does anyone else get the following failures when running the classlib test suite on Windows XP? I've been getting these for months and just ignoring them while I worked on other stuff, because they always happened. Before I start digging into I wanted to see if anyone else is getting these

Re: [Fwd: [classlib][NIO|VMI]Interruptible channel implementation - how to interact with Thread?]

2006-06-17 Thread Archie Cobbs
Andrew Zhang wrote: if thread A is block on ServerSocket.accept(), then A is interrupted by another thread. What should be the result? Spec says If none of the previous conditions hold then this thread's interrupt status will be set. Only interrupt status should be set and thread A should keep

Re: [Fwd: [classlib][NIO|VMI]Interruptible channel implementation - how to interact with Thread?]

2006-06-17 Thread Andrew Zhang
On 6/18/06, Archie Cobbs [EMAIL PROTECTED] wrote: Andrew Zhang wrote: if thread A is block on ServerSocket.accept(), then A is interrupted by another thread. What should be the result? Spec says If none of the previous conditions hold then this thread's interrupt status will be set. Only