Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for runtime_AfterFork (0.25 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)
Back to top