This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: pthreads and sockets - Cannot register window class error


Jacek Trzmiel wrote:

> void test()
> {
>     /* go find out about the desired host machine */
>     struct hostent *he = gethostbyname(HOST);
>     if (he == 0) {
>         perror("gethostbyname");
>         exit(1);
>     }

Just a wild guess, but gethostbyname() is probably not reentrant and
can't be called from threads like that.

Brian

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]