Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 133 for tzcntl (0.39 sec)

  1. src/syscall/zsyscall_aix_ppc64.go

    // Code generated by the command above; DO NOT EDIT.
    
    //go:build aix && ppc64
    
    package syscall
    
    import "unsafe"
    
    //go:cgo_import_dynamic libc_fcntl fcntl "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Dup2 dup2 "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_pipe pipe "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_readlink readlink "libc.a/shr_64.o"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go

    	SYS_SETPGID              = 82  // { int|sys||setpgid(pid_t pid, pid_t pgid); }
    	SYS_DUP2                 = 90  // { int|sys||dup2(int from, int to); }
    	SYS_FCNTL                = 92  // { int|sys||fcntl(int fd, int cmd, ... void *arg); }
    	SYS_FSYNC                = 95  // { int|sys||fsync(int fd); }
    	SYS_SETPRIORITY          = 96  // { int|sys||setpriority(int which, id_t who, int prio); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  3. src/runtime/sys_darwin_arm64.s

    	// (Because ios decided not to adhere to the standard arm64 calling convention, sigh...)
    	// The only libSystem calls we support that are vararg are open, fcntl, and ioctl,
    	// which are all of the form fn(x, y, ...). So we just need to put the 3rd arg
    	// on the stack as well.
    	// If we ever have other vararg libSystem calls, we might need to handle more cases.
    	MOVD	R2, (RSP)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go

    	SYS_SETPGID              = 82  // { int|sys||setpgid(pid_t pid, pid_t pgid); }
    	SYS_DUP2                 = 90  // { int|sys||dup2(int from, int to); }
    	SYS_FCNTL                = 92  // { int|sys||fcntl(int fd, int cmd, ... void *arg); }
    	SYS_FSYNC                = 95  // { int|sys||fsync(int fd); }
    	SYS_SETPRIORITY          = 96  // { int|sys||setpriority(int which, id_t who, int prio); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go

    	SYS_SETPGID              = 82  // { int|sys||setpgid(pid_t pid, pid_t pgid); }
    	SYS_DUP2                 = 90  // { int|sys||dup2(int from, int to); }
    	SYS_FCNTL                = 92  // { int|sys||fcntl(int fd, int cmd, ... void *arg); }
    	SYS_FSYNC                = 95  // { int|sys||fsync(int fd); }
    	SYS_SETPRIORITY          = 96  // { int|sys||setpriority(int which, id_t who, int prio); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_netbsd_386.go

    	SYS_SETPGID              = 82  // { int|sys||setpgid(pid_t pid, pid_t pgid); }
    	SYS_DUP2                 = 90  // { int|sys||dup2(int from, int to); }
    	SYS_FCNTL                = 92  // { int|sys||fcntl(int fd, int cmd, ... void *arg); }
    	SYS_FSYNC                = 95  // { int|sys||fsync(int fd); }
    	SYS_SETPRIORITY          = 96  // { int|sys||setpriority(int which, id_t who, int prio); }
    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. cmd/kubeadm/app/util/users/users_linux.go

    		// with an error. F_SETLK is used instead of F_SETLKW to avoid
    		// the case where a runaway process grabs the exclusive lock and
    		// blocks this call indefinitely.
    		// https://man7.org/linux/man-pages/man2/fcntl.2.html
    		lock := syscall.Flock_t{Type: syscall.F_WRLCK}
    		if err = syscall.FcntlFlock(f.Fd(), syscall.F_SETLK, &lock); err == nil {
    			break
    		}
    		time.Sleep(200 * time.Millisecond)
    		if time.Now().After(deadline) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go

    func fcntl(fd int, cmd int, arg int) (n int, err error) {
    	r0, _, e1 := syscall_syscall(libc_fcntl_trampoline_addr, uintptr(fd), uintptr(cmd), uintptr(arg))
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_fcntl_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_fcntl fcntl "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go

    func fcntl(fd int, cmd int, arg int) (n int, err error) {
    	r0, _, e1 := syscall_syscall(libc_fcntl_trampoline_addr, uintptr(fd), uintptr(cmd), uintptr(arg))
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_fcntl_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_fcntl fcntl "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. src/syscall/zsyscall_openbsd_amd64.go

    func fcntl(fd int, cmd int, arg int) (val int, err error) {
    	r0, _, e1 := syscall(abi.FuncPCABI0(libc_fcntl_trampoline), uintptr(fd), uintptr(cmd), uintptr(arg))
    	val = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_fcntl_trampoline()
    
    //go:cgo_import_dynamic libc_fcntl fcntl "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
Back to top