Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for syscall_syscall9 (0.32 sec)

  1. src/runtime/syscall_windows.go

    }
    
    //go:linkname syscall_Syscall6 syscall.Syscall6
    //go:nosplit
    func syscall_Syscall6(fn, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr) {
    	args := [...]uintptr{a1, a2, a3, a4, a5, a6}
    	return syscall_SyscallN(fn, args[:nargs]...)
    }
    
    //go:linkname syscall_Syscall9 syscall.Syscall9
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/runtime/sys_darwin.go

    //
    //go:linkname syscall_syscall9 syscall.syscall9
    //go:nosplit
    //go:cgo_unsafe_args
    func syscall_syscall9(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2, err uintptr) {
    	entersyscall()
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(syscall9)), unsafe.Pointer(&fn))
    	exitsyscall()
    	return
    }
    func syscall9()
    
    //go:linkname syscall_syscall6X syscall.syscall6X
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. doc/asm.html

    function must not contain the package name component (for example,
    function <code>Syscall</code> in package <code>syscall</code> should
    use the name <code>·Syscall</code> instead of the equivalent name
    <code>syscall·Syscall</code> in its <code>TEXT</code> directive).
    For more complex situations, explicit annotation is needed.
    These annotations use pseudo-instructions defined in the standard
    <code>#include</code> file <code>funcdata.h</code>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
Back to top