Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 209 for adjtime (0.14 sec)

  1. src/syscall/zsyscall_solaris_amd64.go

    //go:cgo_import_dynamic libc_accept accept "libsocket.so"
    //go:cgo_import_dynamic libc___xnet_sendmsg __xnet_sendmsg "libsocket.so"
    //go:cgo_import_dynamic libc_Access access "libc.so"
    //go:cgo_import_dynamic libc_Adjtime adjtime "libc.so"
    //go:cgo_import_dynamic libc_Chdir chdir "libc.so"
    //go:cgo_import_dynamic libc_Chmod chmod "libc.so"
    //go:cgo_import_dynamic libc_Chown chown "libc.so"
    //go:cgo_import_dynamic libc_Chroot chroot "libc.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:09:10 UTC 2023
    - 37.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    	if flags&O_CLOEXEC != 0 {
    		how = F_DUP2FD_CLOEXEC
    	}
    	_, err := fcntl(oldfd, how, newfd)
    	return err
    }
    
    /*
     * Exposed directly
     */
    //sys	Access(path string, mode uint32) (err error)
    //sys	Adjtime(delta *Timeval, olddelta *Timeval) (err error)
    //sys	CapEnter() (err error)
    //sys	capRightsGet(version int, fd int, rightsp *CapRights) (err error) = SYS___CAP_RIGHTS_GET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. src/syscall/syscall_solaris.go

    		return 0, err
    	}
    	if len(oob) > 0 && len(p) == 0 {
    		n = 0
    	}
    	return n, nil
    }
    
    /*
     * Exposed directly
     */
    //sys	Access(path string, mode uint32) (err error)
    //sys	Adjtime(delta *Timeval, olddelta *Timeval) (err error)
    //sys	Chdir(path string) (err error)
    //sys	Chmod(path string, mode uint32) (err error)
    //sys	Chown(path string, uid int, gid int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_freebsd_arm.go

    	SYS_RMDIR                    = 137 // { int rmdir(char *path); }
    	SYS_UTIMES                   = 138 // { int utimes(char *path, \
    	SYS_ADJTIME                  = 140 // { int adjtime(struct timeval *delta, \
    	SYS_SETSID                   = 147 // { int setsid(void); }
    	SYS_QUOTACTL                 = 148 // { int quotactl(char *path, int cmd, int uid, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  5. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_RMDIR         = 137 // { int rmdir(char *path); }
    	SYS_UTIMES        = 138 // { int utimes(char *path, struct timeval *tptr); }
    	SYS_ADJTIME       = 140 // { int adjtime(struct timeval *delta, \
    	SYS_SETSID        = 147 // { int setsid(void); }
    	SYS_QUOTACTL      = 148 // { int quotactl(char *path, int cmd, int uid, \
    	SYS_STATFS        = 157 // { int statfs(char *path, struct statfs *buf); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_netbsd_amd64.go

    	SYS_UTIMES               = 420 // { int|sys|50|utimes(const char *path, const struct timeval *tptr); }
    	SYS_ADJTIME              = 421 // { int|sys|50|adjtime(const struct timeval *delta, struct timeval *olddelta); }
    	SYS_FUTIMES              = 423 // { int|sys|50|futimes(int fd, const struct timeval *tptr); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_netbsd_arm.go

    	SYS_UTIMES               = 420 // { int|sys|50|utimes(const char *path, const struct timeval *tptr); }
    	SYS_ADJTIME              = 421 // { int|sys|50|adjtime(const struct timeval *delta, struct timeval *olddelta); }
    	SYS_FUTIMES              = 423 // { int|sys|50|futimes(int fd, const struct timeval *tptr); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  8. src/syscall/zsyscall_openbsd_arm.go

    func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
    	_, _, e1 := syscall(abi.FuncPCABI0(libc_adjtime_trampoline), uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_adjtime_trampoline()
    
    //go:cgo_import_dynamic libc_adjtime adjtime "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go

    	SYS_UTIMES               = 420 // { int|sys|50|utimes(const char *path, const struct timeval *tptr); }
    	SYS_ADJTIME              = 421 // { int|sys|50|adjtime(const struct timeval *delta, struct timeval *olddelta); }
    	SYS_FUTIMES              = 423 // { int|sys|50|futimes(int fd, const struct timeval *tptr); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go

    	SYS_RMDIR                    = 137 // { int rmdir(char *path); }
    	SYS_UTIMES                   = 138 // { int utimes(char *path, struct timeval *tptr); }
    	SYS_ADJTIME                  = 140 // { int adjtime(struct timeval *delta, struct timeval *olddelta); }
    	SYS_SETSID                   = 147 // { int setsid(void); }
    	SYS_QUOTACTL                 = 148 // { int quotactl(char *path, int cmd, int uid, caddr_t arg); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
Back to top