Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for syscall_forkx (0.18 sec)

  1. src/runtime/syscall_aix.go

    //go:linkname syscall_fcntl1 syscall.fcntl1
    //go:nosplit
    func syscall_fcntl1(fd, cmd, arg uintptr) (val, err uintptr) {
    	val, err = syscall3(&libc_fcntl, fd, cmd, arg)
    	return
    }
    
    //go:linkname syscall_forkx syscall.forkx
    //go:nosplit
    func syscall_forkx(flags uintptr) (pid uintptr, err uintptr) {
    	pid, err = syscall1(&libc_fork, flags)
    	return
    }
    
    //go:linkname syscall_getpid syscall.getpid
    //go:nosplit
    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