/* in listener env, the listener shutdown does this. we have no listener */ void osi_StopNetIfPoller(void) { shutdown_rx(); soclose(rx_socket); if (afs_termState == AFSOP_STOP_NETIF) { afs_termState = AFSOP_STOP_COMPLETE; osi_rxWakeup(&afs_termState); } }
/* Called by Rx when the first reply packet of a call is received, or the call is aborted. */ void multi_Ready(struct rx_call *call, void *amh, int index) { struct multi_handle *mh = (struct multi_handle *)amh; #ifdef RX_ENABLE_LOCKS MUTEX_ENTER(&mh->lock); #endif /* RX_ENABLE_LOCKS */ *mh->firstNotReady++ = index; mh->nReady++; #ifdef RX_ENABLE_LOCKS CV_SIGNAL(&mh->cv); MUTEX_EXIT(&mh->lock); #else /* RX_ENABLE_LOCKS */ osi_rxWakeup(mh); #endif /* RX_ENABLE_LOCKS */ }