On Thu Mar 17 17:01:51 EDT 2011, [email protected] wrote: > Such programs need to be changed to use a proc rather than > a thread for dialing (or linked with the old version of dial.c > temporarily). Sorry.
i suppose that one could trot out an old trick and do
static int (*_dialrforkimpl)(int) = rfork;
int
_dialprocrfork(int)
{
procrfork(...);
}
and let the thread library set this up, along with the few
other library functions that need to be overridden?
- erik
