gethostby... broken when forked
Andrew Lipnitsky
ert@cit.org.by
Thu Dec 4 08:19:00 GMT 1997
Hi Jeff!!!
Your program work fine for me [WinNT4.0 SP3 + gnuwin b18]
but it does nothing because the parent
process exit before child can do something.
The following source determines host properly (at leas for me).
#include <stdio.h>
#include <netdb.h>
#include <sys/socket.h>
#include <netinet/in.h>
int main(argc, argv)
int argc;
char *argv[];
{
struct hostent *hostptr; /* Internet host struct from netdb.h */
char hostname[256];
int childpid;
strcpy(hostname, argv[1]);
printf("PARENT STARTED PID=%d\n", getpid());
if ((childpid = fork()) < 0) {
printf("fork failed\n");
exit(0);
} else if (childpid == 0) { /* start child process */
printf("CHILD STARTED PID=%d\n", getpid());
hostptr = gethostbyname(hostname); /* BOMBS HERE */
printf("hostptr = %p\n hostname=%s\n", hostptr,hostptr->h_name);
exit(0);
} else sleep(100); // !!! parent process wait for child
}
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".
More information about the Cygwin
mailing list