Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for dup2child (0.2 sec)

  1. src/syscall/exec_libc.go

    func runtime_BeforeFork()
    func runtime_AfterFork()
    func runtime_AfterForkInChild()
    
    func chdir(path uintptr) (err Errno)
    func chroot1(path uintptr) (err Errno)
    func closeFD(fd uintptr) (err Errno)
    func dup2child(old uintptr, new uintptr) (val uintptr, err Errno)
    func execve(path uintptr, argv uintptr, envp uintptr) (err Errno)
    func exit(code uintptr)
    func fcntl1(fd uintptr, cmd uintptr, arg uintptr) (val uintptr, err Errno)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. src/syscall/asm_solaris_amd64.s

    TEXT ·chdir(SB),NOSPLIT,$0
    	JMP	runtime·syscall_chdir(SB)
    
    TEXT ·chroot1(SB),NOSPLIT,$0
    	JMP	runtime·syscall_chroot(SB)
    
    TEXT ·closeFD(SB),NOSPLIT,$0
    	JMP	runtime·syscall_close(SB)
    
    TEXT ·dup2child(SB),NOSPLIT,$0
    	JMP	runtime·syscall_dup2(SB)
    	RET
    
    TEXT ·execve(SB),NOSPLIT,$0
    	JMP	runtime·syscall_execve(SB)
    
    TEXT ·exit(SB),NOSPLIT,$0
    	JMP	runtime·syscall_exit(SB)
    
    TEXT ·fcntl1(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 15 17:21:30 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. src/runtime/syscall_aix.go

    //go:linkname syscall_closeFD syscall.closeFD
    //go:nosplit
    func syscall_closeFD(fd int32) int32 {
    	_, err := syscall1(&libc_close, uintptr(fd))
    	return int32(err)
    }
    
    //go:linkname syscall_dup2child syscall.dup2child
    //go:nosplit
    func syscall_dup2child(old, new uintptr) (val, err uintptr) {
    	val, err = syscall2(&libc_dup2, old, new)
    	return
    }
    
    //go:linkname syscall_execve syscall.execve
    //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)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchyTest.groovy

            def dir2Child = dir2.file("child").createFile()
            def dir3 = parent.createDir("common/dir3")
            def dir3Child = dir3.file("child").createFile()
    
            expect:
            def set = snapshot(dir1, dir2, dir3)
            [dir1, dir2, dir3].each { File location ->
                assertDirectorySnapshot(set, location)
            }
            [dir1Child, dir2Child, dir3Child].each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 32.4K bytes
    - Viewed (0)
Back to top