Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for syscall_write (0.16 sec)

  1. src/runtime/syscall_solaris.go

    	exitsyscall()
    	KeepAlive(wstatus)
    	KeepAlive(rusage)
    	return int(call.r1), call.err
    }
    
    //go:nosplit
    //go:linkname syscall_write
    //go:cgo_unsafe_args
    func syscall_write(fd, buf, nbyte uintptr) (n, err uintptr) {
    	call := libcall{
    		fn:   uintptr(unsafe.Pointer(&libc_write)),
    		n:    3,
    		args: uintptr(unsafe.Pointer(&fd)),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. src/runtime/syscall_aix.go

    //go:linkname syscall_setpgid syscall.setpgid
    //go:nosplit
    func syscall_setpgid(pid, pgid uintptr) (err uintptr) {
    	_, err = syscall2(&libc_setpgid, pid, pgid)
    	return
    }
    
    //go:linkname syscall_write1 syscall.write1
    //go:nosplit
    func syscall_write1(fd, buf, nbyte uintptr) (n, err uintptr) {
    	n, err = syscall3(&libc_write, fd, buf, nbyte)
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top