Re: [naviserver-devel] Re: [naviserver-commits] naviserver/nsd dns.c,1.1.1.1,1.2

2005-04-12 Thread Stephen Deasey
On 4/11/05, Zoran Vasiljevic <[EMAIL PROTECTED]> wrote: > > Am 11.04.2005 um 05:05 schrieb Stephen Deasey: > > > I guess this is an OSX problem? While looking at the configure tests, > > I noticed that gethostbyname_r etc. are not used on Linux, even though > > they're available. The standard c

Re: [naviserver-devel] Re: [naviserver-commits] naviserver/nsd dns.c,1.1.1.1,1.2

2005-04-10 Thread Zoran Vasiljevic
Am 11.04.2005 um 05:05 schrieb Stephen Deasey: I guess this is an OSX problem? While looking at the configure tests, I noticed that gethostbyname_r etc. are not used on Linux, even though they're available. The standard call is thread safe, but only because glibc puts a lock around everything.

[naviserver-devel] Re: [naviserver-commits] naviserver/nsd dns.c,1.1.1.1,1.2

2005-04-10 Thread Stephen Deasey
I guess this is an OSX problem? While looking at the configure tests, I noticed that gethostbyname_r etc. are not used on Linux, even though they're available. The standard call is thread safe, but only because glibc puts a lock around everything. I wonder if for performance the *_r variants sho