Re: err_sys
Re: err_sys
- Subject: Re: err_sys
- From: Matt Majka <email@hidden>
- Date: Fri, 10 Aug 2001 15:53:13 -0500
It's listed on page 122 of the Stevens Network Programming manual:
void sig_chld(int signo)
{
pid_t pid;
int stat;
pid = wait(&stat);
printf("child %d terminated\n", pid);
return;
}
On Friday, August 10, 2001, at 03:47 pm, Chilton Webb wrote:
>
Well, I've nailed em all down but this one. Apparently, there's a
>
function or something I don't have.
>
>
Build Log:
>
"/usr/bin/ld: Undefined symbols:
>
_sig_chld"
>
>
Code for the offending log entry:
>
void sig_chld(int);
>
>
>
Any idea where that sig_chld thing is? The curious part about this is
>
that it isn't mentioned in the header file. I assume it's a function I
>
can't find anywhere. Would that assumption be correct?
>
>
Thanks,
>
-Chilton
>
>
>
On Friday, August 10, 2001, at 02:31 PM, Matt Majka wrote:
>
>
> Sorry. I thought you were looking for err_sys().
>
> What problems are you having?
References: | |
| >Re: err_sys (From: Chilton Webb <email@hidden>) |