Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for forkExecPipe (0.1 sec)

  1. src/syscall/exec_linux.go

    	}
    	nextfd++
    
    	// Allocate another pipe for parent to child communication for
    	// synchronizing writing of User ID/Group ID mappings.
    	if sys.UidMappings != nil || sys.GidMappings != nil {
    		if err := forkExecPipe(mapPipe[:]); err != nil {
    			err1 = err.(Errno)
    			return
    		}
    	}
    
    	flags = sys.Cloneflags
    	if sys.Cloneflags&CLONE_NEWUSER == 0 && sys.Unshareflags&CLONE_NEWUSER == 0 {
    		flags |= CLONE_VFORK | CLONE_VM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top