Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for syscall_runtime_BeforeExec (0.55 sec)

  1. src/runtime/proc.go

    // For #41702.
    var pendingPreemptSignals atomic.Int32
    
    // Called from syscall package before Exec.
    //
    //go:linkname syscall_runtime_BeforeExec syscall.runtime_BeforeExec
    func syscall_runtime_BeforeExec() {
    	// Prevent thread creation during exec.
    	execLock.lock()
    
    	// On Darwin, wait for all pending preemption signals to
    	// be received. See issue #41702.
    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