Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for S_IFDIR (0.13 sec)

  1. src/os/file_unix.go

    			// only once as ready (both read and write).
    			// Issue 19093.
    			// Also don't add directories to the netpoller.
    			if err == nil && (typ == syscall.S_IFREG || typ == syscall.S_IFDIR) {
    				pollable = false
    			}
    
    			// In addition to the behavior described above for regular files,
    			// on Darwin, kqueue does not work properly with fifos:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	S_BLKSIZE                                   = 0x200
    	S_IEXEC                                     = 0x40
    	S_IFBLK                                     = 0x6000
    	S_IFCHR                                     = 0x2000
    	S_IFDIR                                     = 0x4000
    	S_IFIFO                                     = 0x1000
    	S_IFLNK                                     = 0xa000
    	S_IFMT                                      = 0xf000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
Back to top