Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for netpollupdate (2.79 sec)

  1. src/runtime/netpoll_solaris.go

    		throw("runtime: netpollupdate failed")
    	}
    	pd.user = events
    }
    
    // subscribe the fd to the port such that port_getn will return one event.
    func netpollarm(pd *pollDesc, mode int) {
    	lock(&pd.lock)
    	switch mode {
    	case 'r':
    		netpollupdate(pd, _POLLIN, 0)
    	case 'w':
    		netpollupdate(pd, _POLLOUT, 0)
    	default:
    		throw("runtime: bad mode")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top