Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for fstatfs (0.3 sec)

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

    	CS6                            = 0x100
    	CS7                            = 0x200
    	CS8                            = 0x300
    	CSIZE                          = 0x300
    	CSTART                         = 0x11
    	CSTATUS                        = 0x14
    	CSTOP                          = 0x13
    	CSTOPB                         = 0x400
    	CSUSP                          = 0x1a
    	CTL_HW                         = 0x6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go

    	CS6                            = 0x100
    	CS7                            = 0x200
    	CS8                            = 0x300
    	CSIZE                          = 0x300
    	CSTART                         = 0x11
    	CSTATUS                        = 0x14
    	CSTOP                          = 0x13
    	CSTOPB                         = 0x400
    	CSUSP                          = 0x1a
    	CTL_HW                         = 0x6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    		return -1
    	}
    	return int(w>>shift) >> 8
    }
    
    //sys	wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error)
    
    func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error) {
    	var status _C_int
    	wpid, err = wait4(pid, &status, options, rusage)
    	if wstatus != nil {
    		*wstatus = WaitStatus(status)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top