Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for syscall10X (0.32 sec)

  1. src/runtime/sys_openbsd3.go

    }
    func syscall10()
    
    //go:linkname syscall_syscall10X syscall.syscall10X
    //go:nosplit
    //go:cgo_unsafe_args
    func syscall_syscall10X(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10 uintptr) (r1, r2, err uintptr) {
    	entersyscall()
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(syscall10X)), unsafe.Pointer(&fn))
    	exitsyscall()
    	return
    }
    func syscall10X()
    
    // golang.org/x/sys linknames syscall_rawSyscall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/syscall/syscall_openbsd_libc.go

    func syscall6(fn, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
    func syscall6X(fn, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
    func syscall10(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10 uintptr) (r1, r2 uintptr, err Errno)
    func syscall10X(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10 uintptr) (r1, r2 uintptr, err Errno)
    func rawSyscall(fn, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/runtime/sys_openbsd_arm64.s

    //	a7    uintptr
    //	a8    uintptr
    //	a9    uintptr
    //	a10   uintptr
    //	r1    uintptr
    //	r2    uintptr
    //	err   uintptr
    // }
    // syscall10X must be called on the g0 stack with the
    // C calling convention (use libcCall).
    //
    // syscall10X is like syscall10 but expects a 64-bit result
    // and tests for 64-bit -1 to decide there was an error.
    TEXT runtime·syscall10X(SB),NOSPLIT,$0
    	MOVD    R0, R19			// pointer to args
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  4. src/runtime/sys_openbsd_ppc64.s

    //	a10   uintptr
    //	r1    uintptr
    //	r2    uintptr
    //	err   uintptr
    // }
    // syscall10X must be called on the g0 stack with the
    // C calling convention (use libcCall). Note that this is
    // really syscall8X as a maximum of eight parameters can be
    // passed via registers (and current usage does not exceed
    // this).
    //
    // syscall10X is like syscall10 but expects a 64-bit result
    // and tests for 64-bit -1 to decide there was an error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. src/runtime/sys_openbsd_riscv64.s

    //	a7    uintptr
    //	a8    uintptr
    //	a9    uintptr
    //	a10   uintptr
    //	r1    uintptr
    //	r2    uintptr
    //	err   uintptr
    // }
    // syscall10X must be called on the g0 stack with the
    // C calling convention (use libcCall).
    //
    // syscall10X is like syscall10 but expects a 64-bit result
    // and tests for 64-bit -1 to decide there was an error.
    //
    // The openbsd/riscv64 kernel only accepts eight syscall arguments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  6. src/runtime/sys_openbsd_arm.s

    //	a7    uintptr
    //	a8    uintptr
    //	a9    uintptr
    //	a10   uintptr
    //	r1    uintptr
    //	r2    uintptr
    //	err   uintptr
    // }
    // syscall10X must be called on the g0 stack with the
    // C calling convention (use libcCall).
    //
    // syscall10X is like syscall10 but expects a 64-bit result
    // and tests for 64-bit -1 to decide there was an error.
    TEXT runtime·syscall10X(SB),NOSPLIT,$0
    	MOVW	R13, R9
    	SUB	$24, R13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  7. src/runtime/sys_openbsd_amd64.s

    //	a7    uintptr
    //	a8    uintptr
    //	a9    uintptr
    //	a10   uintptr
    //	r1    uintptr
    //	r2    uintptr
    //	err   uintptr
    // }
    // syscall10X must be called on the g0 stack with the
    // C calling convention (use libcCall).
    //
    // syscall10X is like syscall10 but expects a 64-bit result
    // and tests for 64-bit -1 to decide there was an error.
    TEXT runtime·syscall10X(SB),NOSPLIT,$48
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  8. src/runtime/sys_openbsd_386.s

    	CALL	libc_errno(SB)
    	MOVL	(AX), AX
    	MOVW	AX, (13*4)(BX)		// err
    
    ok:
    	MOVL	$0, AX			// no error (it's ignored anyway)
    	MOVL	BP, SP
    	POPL	BP
    	RET
    
    // syscall10X calls a function in libc on behalf of the syscall package.
    // syscall10X takes a pointer to a struct like:
    // struct {
    //	fn    uintptr
    //	a1    uintptr
    //	a2    uintptr
    //	a3    uintptr
    //	a4    uintptr
    //	a5    uintptr
    //	a6    uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  9. src/runtime/syscall_aix.go

    }
    
    //go:linkname syscall_chdir syscall.chdir
    //go:nosplit
    func syscall_chdir(path uintptr) (err uintptr) {
    	_, err = syscall1(&libc_chdir, path)
    	return
    }
    
    //go:linkname syscall_chroot1 syscall.chroot1
    //go:nosplit
    func syscall_chroot1(path uintptr) (err uintptr) {
    	_, err = syscall1(&libc_chroot, path)
    	return
    }
    
    // like close, but must not split stack, for fork.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. api/go1.18.txt

    pkg syscall (freebsd-arm64-cgo), type SysProcAttr struct, Pdeathsig Signal
    pkg syscall (windows-386), func Syscall //deprecated
    pkg syscall (windows-386), func Syscall12 //deprecated
    pkg syscall (windows-386), func Syscall15 //deprecated
    pkg syscall (windows-386), func Syscall18 //deprecated
    pkg syscall (windows-386), func Syscall6 //deprecated
    pkg syscall (windows-386), func Syscall9 //deprecated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 13K bytes
    - Viewed (0)
Back to top