Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for fexecve (0.08 sec)

  1. src/syscall/zsyscall_openbsd_386.go

    func execve(path *byte, argv **byte, envp **byte) (err error) {
    	_, _, e1 := rawSyscall(abi.FuncPCABI0(libc_execve_trampoline), uintptr(unsafe.Pointer(path)), uintptr(unsafe.Pointer(argv)), uintptr(unsafe.Pointer(envp)))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_execve_trampoline()
    
    //go:cgo_import_dynamic libc_execve execve "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	if err != nil {
    		return err
    	}
    	if nonblocking {
    		flag |= O_NONBLOCK
    	} else {
    		flag &= ^O_NONBLOCK
    	}
    	_, err = fcntl(fd, F_SETFL, flag)
    	return err
    }
    
    // Exec calls execve(2), which replaces the calling executable in the process
    // tree. argv0 should be the full path to an executable ("/bin/ls") and the
    // executable name should also be the first argument in argv (["ls", "-l"]).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top