Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 113 for Flock_t (0.24 sec)

  1. src/syscall/ztypes_freebsd_arm.go

    	Spare       [10]uint64
    	Namemax     uint32
    	Owner       uint32
    	Fsid        Fsid
    	Charspare   [80]int8
    	Fstypename  [16]int8
    	Mntfromname [1024]int8
    	Mntonname   [1024]int8
    }
    
    type Flock_t struct {
    	Start     int64
    	Len       int64
    	Pid       int32
    	Type      int16
    	Whence    int16
    	Sysid     int32
    	Pad_cgo_0 [4]byte
    }
    
    type Dirent struct {
    	Fileno uint64
    	Off    int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  2. src/syscall/ztypes_freebsd_arm64.go

    	Spare       [10]uint64
    	Namemax     uint32
    	Owner       uint32
    	Fsid        Fsid
    	Charspare   [80]int8
    	Fstypename  [16]int8
    	Mntfromname [1024]int8
    	Mntonname   [1024]int8
    }
    
    type Flock_t struct {
    	Start     int64
    	Len       int64
    	Pid       int32
    	Type      int16
    	Whence    int16
    	Sysid     int32
    	Pad_cgo_0 [4]byte
    }
    
    type Dirent struct {
    	Fileno uint64
    	Off    int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    }
    
    type Timeval struct {
    	Sec  int64
    	Usec int64
    }
    
    type timeval_zos struct { //correct (with padding and all)
    	Sec  int64
    	_    [4]byte // pad
    	Usec int32
    }
    
    type Tms struct { //clock_t is 4-byte unsigned int in zos
    	Utime  uint32
    	Stime  uint32
    	Cutime uint32
    	Cstime uint32
    }
    
    type Time_t int64
    
    type Utimbuf struct {
    	Actime  int64
    	Modtime int64
    }
    
    type Utsname struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. src/syscall/ztypes_openbsd_ppc64.go

    	F_owner       uint32
    	F_ctime       uint64
    	F_fstypename  [16]int8
    	F_mntonname   [90]int8
    	F_mntfromname [90]int8
    	F_mntfromspec [90]int8
    	Pad_cgo_0     [2]byte
    	Mount_info    [160]byte
    }
    
    type Flock_t struct {
    	Start  int64
    	Len    int64
    	Pid    int32
    	Type   int16
    	Whence int16
    }
    
    type Dirent struct {
    	Fileno       uint64
    	Off          int64
    	Reclen       uint16
    	Type         uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/lockedfile/internal/filelock/filelock_fcntl.go

    	return err
    }
    
    // setlkw calls FcntlFlock with F_SETLKW for the entire file indicated by fd.
    func setlkw(fd uintptr, lt lockType) error {
    	for {
    		err := syscall.FcntlFlock(fd, syscall.F_SETLKW, &syscall.Flock_t{
    			Type:   int16(lt),
    			Whence: io.SeekStart,
    			Start:  0,
    			Len:    0, // All bytes.
    		})
    		if err != syscall.EINTR {
    			return err
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 17 02:24:35 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. src/syscall/ztypes_freebsd_386.go

    	Spare       [10]uint64
    	Namemax     uint32
    	Owner       uint32
    	Fsid        Fsid
    	Charspare   [80]int8
    	Fstypename  [16]int8
    	Mntfromname [1024]int8
    	Mntonname   [1024]int8
    }
    
    type Flock_t struct {
    	Start  int64
    	Len    int64
    	Pid    int32
    	Type   int16
    	Whence int16
    	Sysid  int32
    }
    
    type Dirent struct {
    	Fileno uint64
    	Off    int64
    	Reclen uint16
    	Type   uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  7. src/syscall/ztypes_freebsd_riscv64.go

    	Spare       [10]uint64
    	Namemax     uint32
    	Owner       uint32
    	Fsid        Fsid
    	Charspare   [80]int8
    	Fstypename  [16]int8
    	Mntfromname [1024]int8
    	Mntonname   [1024]int8
    }
    
    type Flock_t struct {
    	Start     int64
    	Len       int64
    	Pid       int32
    	Type      int16
    	Whence    int16
    	Sysid     int32
    	Pad_cgo_0 [4]byte
    }
    
    type Dirent struct {
    	Fileno uint64
    	Off    int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:39:46 UTC 2022
    - 8K bytes
    - Viewed (0)
  8. src/syscall/types_freebsd.go

    	S_IRWXO  = C.S_IRWXO
    )
    
    const (
    	_statfsVersion = C.STATFS_VERSION
    	_dirblksiz     = C.DIRBLKSIZ
    )
    
    type Stat_t C.struct_stat
    
    type Statfs_t C.struct_statfs
    
    type Flock_t C.struct_flock
    
    type Dirent C.struct_dirent
    
    type Fsid C.struct_fsid
    
    // File system limits
    
    const (
    	pathMax = C.PATH_MAX
    )
    
    // Sockets
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  9. src/syscall/ztypes_openbsd_riscv64.go

    	F_owner       uint32
    	F_ctime       uint64
    	F_fstypename  [16]int8
    	F_mntonname   [90]int8
    	F_mntfromname [90]int8
    	F_mntfromspec [90]int8
    	Pad_cgo_0     [2]byte
    	Mount_info    [160]byte
    }
    
    type Flock_t struct {
    	Start  int64
    	Len    int64
    	Pid    int32
    	Type   int16
    	Whence int16
    }
    
    type Dirent struct {
    	Fileno       uint64
    	Off          int64
    	Reclen       uint16
    	Type         uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go

    	Asyncwrites int64
    	Fstypename  [16]byte
    	Mntonname   [80]byte
    	Syncreads   int64
    	Asyncreads  int64
    	Spares1     int16
    	Mntfromname [80]byte
    	Spares2     int16
    	Spare       [2]int64
    }
    
    type Flock_t struct {
    	Start  int64
    	Len    int64
    	Pid    int32
    	Type   int16
    	Whence int16
    }
    
    type Dirent struct {
    	Fileno  uint64
    	Namlen  uint16
    	Type    uint8
    	Unused1 uint8
    	Unused2 uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top