This is what I need to do in win32:
$SIG{ALRM}=\&timed_out;
eval {
alarm(10;
$rc=$conn1->rpc('$host');
alarm(0);
Quote:
}
sub timed_out {
die "RPC ERR TIME OUT";
Quote:
}
but I have no idea how in win32 (mutexes/ipc..?)
Any body care to show me how this is done (successfully) on win32?