On Thu Mar 17 17:01:51 EDT 2011, ge...@plan9.bell-labs.com 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

Reply via email to