Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for FdIsWatched (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    func (e *EventPort) PathIsWatched(path string) bool {
    	e.mu.Lock()
    	defer e.mu.Unlock()
    	_, found := e.paths[path]
    	return found
    }
    
    // FdIsWatched checks to see if fd is associated with this EventPort.
    func (e *EventPort) FdIsWatched(fd uintptr) bool {
    	e.mu.Lock()
    	defer e.mu.Unlock()
    	_, found := e.fds[fd]
    	return found
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
Back to top