Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for runtime_AfterFork (0.29 sec)

  1. src/syscall/exec_bsd.go

    	// About to call fork.
    	// No more allocation or calls of non-assembly functions.
    	runtime_BeforeFork()
    	r1, _, err1 = RawSyscall(SYS_FORK, 0, 0, 0)
    	if err1 != 0 {
    		runtime_AfterFork()
    		return 0, err1
    	}
    
    	if r1 != 0 {
    		// parent; return PID
    		runtime_AfterFork()
    		return int(r1), 0
    	}
    
    	// Fork succeeded, now in child.
    
    	// Enable tracing if requested.
    	if sys.Ptrace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. src/syscall/exec_freebsd.go

    	// No more allocation or calls of non-assembly functions.
    	runtime_BeforeFork()
    	r1, _, err1 = RawSyscall(SYS_FORK, 0, 0, 0)
    	if err1 != 0 {
    		runtime_AfterFork()
    		return 0, err1
    	}
    
    	if r1 != 0 {
    		// parent; return PID
    		runtime_AfterFork()
    		return int(r1), 0
    	}
    
    	// Fork succeeded, now in child.
    
    	// Attach to the given jail, if any. The system call also changes the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. src/syscall/exec_libc.go

    	// No more allocation or calls of non-assembly functions.
    	runtime_BeforeFork()
    	r1, err1 = forkx(0x1) // FORK_NOSIGCHLD
    	if err1 != 0 {
    		runtime_AfterFork()
    		return 0, err1
    	}
    
    	if r1 != 0 {
    		// parent; return PID
    		runtime_AfterFork()
    		return int(r1), 0
    	}
    
    	// Fork succeeded, now in child.
    
    	// Session ID
    	if sys.Setsid {
    		_, err1 = setsid()
    		if err1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. src/syscall/exec_libc2.go

    	// No more allocation or calls of non-assembly functions.
    	runtime_BeforeFork()
    	r1, _, err1 = rawSyscall(abi.FuncPCABI0(libc_fork_trampoline), 0, 0, 0)
    	if err1 != 0 {
    		runtime_AfterFork()
    		return 0, err1
    	}
    
    	if r1 != 0 {
    		// parent; return PID
    		runtime_AfterFork()
    		return int(r1), 0
    	}
    
    	// Fork succeeded, now in child.
    
    	// Enable tracing if requested.
    	if sys.Ptrace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. src/syscall/exec_linux.go

    var (
    	none  = [...]byte{'n', 'o', 'n', 'e', 0}
    	slash = [...]byte{'/', 0}
    
    	forceClone3 = false // Used by unit tests only.
    )
    
    // Implemented in runtime package.
    func runtime_BeforeFork()
    func runtime_AfterFork()
    func runtime_AfterForkInChild()
    
    // Fork, dup fd onto 0..len(fd), and exec(argv0, argvv, envv) in child.
    // If a dup or exec fails, write the errno error to pipe.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    	// Code between fork and exec must not allocate memory nor even try to grow stack.
    	// Here we spoil g.stackguard0 to reliably detect any attempts to grow stack.
    	// runtime_AfterFork will undo this in parent process, but not in child.
    	gp.stackguard0 = stackFork
    }
    
    // Called from syscall package after fork in parent.
    //
    // syscall_runtime_AfterFork is for package syscall,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top