Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for syscall_forkx (0.25 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)
  2. src/runtime/syscall_solaris.go

    		n:    3,
    		args: uintptr(unsafe.Pointer(&fd)),
    	}
    	asmcgocall(unsafe.Pointer(&asmsysvicall6x), unsafe.Pointer(&call))
    	return call.r1, call.err
    }
    
    //go:nosplit
    //go:linkname syscall_forkx
    func syscall_forkx(flags uintptr) (pid uintptr, err uintptr) {
    	call := libcall{
    		fn:   uintptr(unsafe.Pointer(&libc_forkx)),
    		n:    1,
    		args: uintptr(unsafe.Pointer(&flags)),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top