Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for SYS_FADVISE64_64 (0.45 sec)

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

    	SYS_SWAPCONTEXT                  = 249
    	SYS_TGKILL                       = 250
    	SYS_UTIMES                       = 251
    	SYS_STATFS64                     = 252
    	SYS_FSTATFS64                    = 253
    	SYS_FADVISE64_64                 = 254
    	SYS_RTAS                         = 255
    	SYS_SYS_DEBUG_SETCONTEXT         = 256
    	SYS_MIGRATE_PAGES                = 258
    	SYS_MBIND                        = 259
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go

    	SYS_READDIR                 = 204
    	SYS_READAHEAD               = 205
    	SYS_SOCKETCALL              = 206
    	SYS_SYSLOG                  = 207
    	SYS_LOOKUP_DCOOKIE          = 208
    	SYS_FADVISE64               = 209
    	SYS_FADVISE64_64            = 210
    	SYS_TGKILL                  = 211
    	SYS_WAITPID                 = 212
    	SYS_SWAPOFF                 = 213
    	SYS_SYSINFO                 = 214
    	SYS_IPC                     = 215
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go

    	SYS_CLOCK_NANOSLEEP              = 267
    	SYS_STATFS64                     = 268
    	SYS_FSTATFS64                    = 269
    	SYS_TGKILL                       = 270
    	SYS_UTIMES                       = 271
    	SYS_FADVISE64_64                 = 272
    	SYS_VSERVER                      = 273
    	SYS_MBIND                        = 274
    	SYS_GET_MEMPOLICY                = 275
    	SYS_SET_MEMPOLICY                = 276
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_ppc.go

    //sys	Utime(path string, buf *Utimbuf) (err error)
    //sys	utimes(path string, times *[2]Timeval) (err error)
    
    func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
    	_, _, e1 := Syscall6(SYS_FADVISE64_64, uintptr(fd), uintptr(advice), uintptr(offset>>32), uintptr(offset), uintptr(length>>32), uintptr(length))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_386.go

    // (386 default is 32-bit file system and 16-bit uid).
    //sys	EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error)
    //sys	Fadvise(fd int, offset int64, length int64, advice int) (err error) = SYS_FADVISE64_64
    //sys	Fchown(fd int, uid int, gid int) (err error) = SYS_FCHOWN32
    //sys	Fstat(fd int, stat *Stat_t) (err error) = SYS_FSTAT64
    //sys	Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) = SYS_FSTATAT64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go

    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
    	_, _, e1 := Syscall6(SYS_FADVISE64_64, uintptr(fd), uintptr(offset), uintptr(offset>>32), uintptr(length), uintptr(length>>32), uintptr(advice))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"SYS_EXTATTR_SET_FD", Const, 0},
    		{"SYS_EXTATTR_SET_FILE", Const, 0},
    		{"SYS_EXTATTR_SET_LINK", Const, 0},
    		{"SYS_FACCESSAT", Const, 0},
    		{"SYS_FADVISE64", Const, 0},
    		{"SYS_FADVISE64_64", Const, 0},
    		{"SYS_FALLOCATE", Const, 0},
    		{"SYS_FANOTIFY_INIT", Const, 0},
    		{"SYS_FANOTIFY_MARK", Const, 0},
    		{"SYS_FCHDIR", Const, 0},
    		{"SYS_FCHFLAGS", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top