Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for restoreGsignalStack (0.17 sec)

  1. src/runtime/signal_unix.go

    	gp.m.gsignal.stackguard0 = stsp + stackGuard
    	gp.m.gsignal.stackguard1 = stsp + stackGuard
    }
    
    // restoreGsignalStack restores the gsignal stack to the value it had
    // before entering the signal handler.
    //
    //go:nosplit
    //go:nowritebarrierrec
    func restoreGsignalStack(st *gsignalStack) {
    	gp := getg().m.gsignal
    	gp.stack = st.stack
    	gp.stackguard0 = st.stackguard0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top