Re: [Fwd: [PATCH]: Portability fixes]

2009-02-09 Thread Christopher Hegarty - Sun Microsystems Ireland
OK, after checking with the Solaris folks on the possibility of removing the workaround ( that contains the isspace check ), it looks like they cannot confirm that it has indeed been fixed. With that in mind I decided to keep it and only include it for Solaris builds. Please take a look at the

Re: [Fwd: [PATCH]: Portability fixes]

2009-02-03 Thread Christos Zoulas
On Feb 2, 1:42pm, christopher.hega...@sun.com (Christopher Hegarty - Sun Microsystems Ireland) wrote: -- Subject: Re: [Fwd: [PATCH]: Portability fixes] | Hi Alan, Christos, | | I've looked at the changes that Christos suggested and also how Martin | fixed UNIXProcess_md. Here is w

Re: [Fwd: [PATCH]: Portability fixes]

2009-02-02 Thread Christopher Hegarty - Sun Microsystems
Martin Buchholz wrote: On Mon, Feb 2, 2009 at 05:42, Christopher Hegarty - Sun Microsystems Ireland wrote: +static int isAsciiSpace(char c) { + return (((c) == '\t') || ((c) == '\r') || ((c) == '\b') || + ((c) == '\n') || ((c) == ' ') ); +} + A very minor comment - the parens aroun

Re: [Fwd: [PATCH]: Portability fixes]

2009-02-02 Thread Martin Buchholz
On Mon, Feb 2, 2009 at 05:42, Christopher Hegarty - Sun Microsystems Ireland wrote: > +static int isAsciiSpace(char c) { > + return (((c) == '\t') || ((c) == '\r') || ((c) == '\b') || > + ((c) == '\n') || ((c) == ' ') ); > +} > + A very minor comment - the parens around (c) are a very

Re: [Fwd: [PATCH]: Portability fixes]

2009-02-02 Thread Alan Bateman
Christopher Hegarty - Sun Microsystems Ireland wrote: Hi Alan, Christos, I've looked at the changes that Christos suggested and also how Martin fixed UNIXProcess_md. Here is what I believe the final change should look like. Comments: 1) "3. last is possibly uninitialized." We have already

Re: [Fwd: [PATCH]: Portability fixes]

2009-02-02 Thread Christopher Hegarty - Sun Microsystems Ireland
Hi Alan, Christos, I've looked at the changes that Christos suggested and also how Martin fixed UNIXProcess_md. Here is what I believe the final change should look like. Comments: 1) "3. last is possibly uninitialized." We have already fixed this in a previous changeset, see [1] 2) I made

Re: [Fwd: [PATCH]: Portability fixes]

2009-01-30 Thread Christopher Hegarty - Sun Microsystems Ireland
Hi Alan, Yes, I will assign 6799040 to myself and work with Christos to finalize the networking changes. Thanks, -Chris. Alan Bateman wrote: Christos mailed core-libs-dev yesterday with a few portability issues.Anyone have cycles to look at the Inet4AddressImpl.c changes? I've created 67990

[Fwd: [PATCH]: Portability fixes]

2009-01-29 Thread Alan Bateman
Christos mailed core-libs-dev yesterday with a few portability issues.Anyone have cycles to look at the Inet4AddressImpl.c changes? I've created 6799040 to track it. Martin has already pushed a changeset to jdk7/tl/jdk for the UNIXProcess_md.c issue. --- Begin Message --- Hello, Here are some s