RE: 8202794: Native Unix code should use readdir rather than readdir_r

2018-08-06 Thread ted
[email protected]; [email protected] Cc: [email protected]; 'nd' ; [email protected] Subject: Re: 8202794: Native Unix code should use readdir rather than readdir_r On 03/08/2018 20:26, [email protected] wrote: > Hey, all; did this get resolved? I'm still getting

RE: 8202794: Native Unix code should use readdir rather than readdir_r

2018-08-06 Thread ted
teman' ; [email protected]; [email protected] Cc: [email protected]; nd ; [email protected] Subject: RE: 8202794: Native Unix code should use readdir rather than readdir_r Ted, I just use --disable-warnings-as-errors in bash configure command to build jdk 10/11 on

RE: 8202794: Native Unix code should use readdir rather than readdir_r

2018-08-06 Thread Pengfei Li
tp://www.newardassociates.com > > -Original Message- > From: Alan Bateman > Sent: Sunday, August 5, 2018 11:08 AM > To: [email protected]; 'Pengfei Li' ; > [email protected]; [email protected] > Cc: [email protected]; 'nd' ; core-

RE: 8202794: Native Unix code should use readdir rather than readdir_r

2018-08-06 Thread ted
an' ; [email protected]; [email protected] Cc: [email protected]; 'nd' ; [email protected] Subject: Re: 8202794: Native Unix code should use readdir rather than readdir_r On Mon, 2018-08-06 at 01:32 -0700, [email protected] wrote: > I'd really like to be

RE: 8202794: Native Unix code should use readdir rather than readdir_r

2018-08-06 Thread ted
l.com Cc: [email protected]; nd ; [email protected] Subject: RFR: 8202794: Native Unix code should use readdir rather than readdir_r Hi Last month, Bernard proposed a patch to fix the OpenJDK build issue with recent versions of glibc. See http://mail.openjdk.java.net/pipermail/core-li

RE: 8202794: Native Unix code should use readdir rather than readdir_r

2018-08-06 Thread ted
openjdk.java.net; nd ; [email protected] Subject: RE: 8202794: Native Unix code should use readdir rather than readdir_r Ted, I just use --disable-warnings-as-errors in bash configure command to build jdk 10/11 on Ubuntu 18. -- Thanks, Pengfei > > Assuming I want to build J

Re: 8202794: Native Unix code should use readdir rather than readdir_r

2018-08-06 Thread Severin Gehwolf
On Mon, 2018-08-06 at 01:32 -0700, [email protected] wrote: > I'd really like to be able to build 8 and 9; particularly 8, since > that's what my current employer is still using. :-) For JDK 8 we have to use: $ bash configure ... $ make WARNINGS_ARE_ERRORS="" \ SCTP_WERROR= \ ... JD

Re: 8202794: Native Unix code should use readdir rather than readdir_r

2018-08-05 Thread Alan Bateman
On 03/08/2018 20:26, [email protected] wrote: Hey, all; did this get resolved? I'm still getting this error in pulled-yesterday clones of jdk8u and jdk9 and jdk10. I would prefer not to make local changes (mostly I want to build debug builds so I can spelunk the JVM bits), but if this isn't goin

Re: 8202794: Native Unix code should use readdir rather than readdir_r

2018-07-17 Thread B. Blaser
On 17 July 2018 at 19:13, Brian Burkhalter wrote: > > On Jul 17, 2018, at 9:05 AM, B. Blaser wrote: > > On 17 July 2018 at 09:46, Alan Bateman wrote: > > For serviceability-dev but I assume OperatingSystemImpl.c should move to > readdir64 to be consistent with the other usages. > > > I made this

Re: 8202794: Native Unix code should use readdir rather than readdir_r

2018-07-17 Thread Brian Burkhalter
On Jul 17, 2018, at 11:45 AM, Alan Bateman wrote: > On 17/07/2018 18:13, Brian Burkhalter wrote: >> >> I made this small change: >> >> http://cr.openjdk.java.net/~bpb/8202794/webrev.01/ > Looks okay. Thanks. >> : >> >> Is there any issue on file for these things? I could file one but perha

Re: 8202794: Native Unix code should use readdir rather than readdir_r

2018-07-17 Thread Alan Bateman
On 17/07/2018 18:13, Brian Burkhalter wrote: I made this small change: http://cr.openjdk.java.net/~bpb/8202794/webrev.01/ Looks okay. : Is there any issue on file for these things? I could file one but perhaps someone else already kno

Re: 8202794: Native Unix code should use readdir rather than readdir_r

2018-07-17 Thread Brian Burkhalter
On Jul 17, 2018, at 9:05 AM, B. Blaser wrote: > On 17 July 2018 at 09:46, Alan Bateman wrote: >> >> For serviceability-dev but I assume OperatingSystemImpl.c should move to >> readdir64 to be consistent with the other usages. I made this small change: http://cr.openjdk.java.net/~bpb/8202794

Re: 8202794: Native Unix code should use readdir rather than readdir_r

2018-07-17 Thread B. Blaser
On 17 July 2018 at 09:46, Alan Bateman wrote: > On 17/07/2018 04:57, Brian Burkhalter wrote: >> >> https://bugs.openjdk.java.net/browse/JDK-8202794 >> >> Continues thread [1] with subject line updated to match the issue summary. >> Part of this general problem was addressed in [2]. >> >> The patch

Re: 8202794: Native Unix code should use readdir rather than readdir_r

2018-07-17 Thread Alan Bateman
On 17/07/2018 04:57, Brian Burkhalter wrote: https://bugs.openjdk.java.net/browse/JDK-8202794 Continues thread [1] with subject line updated to match the issue summary. Part of this general problem was addressed in [2]. The patch is in effect that proposed in thread [1] less the changes in [2]

8202794: Native Unix code should use readdir rather than readdir_r

2018-07-16 Thread Brian Burkhalter
https://bugs.openjdk.java.net/browse/JDK-8202794 Continues thread [1] with subject line updated to match the issue summary. Part of this general problem was addressed in [2]. The patch is in effect that proposed in thread [1] less the changes in [2]: http://cr.openjdk.java.net/~bpb/8202794/webr

RFR: 8202794: Native Unix code should use readdir rather than readdir_r

2018-06-28 Thread Pengfei Li
Hi Last month, Bernard proposed a patch to fix the OpenJDK build issue with recent versions of glibc. See http://mail.openjdk.java.net/pipermail/core-libs-dev/2018-May/052991.html But this fix requires to be tested on all POSIX systems before getting integrated. As recently, more and more guys