Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setsigstack (0.2 sec)

  1. src/runtime/signal_unix.go

    // newSigstack, so that it can be undone in unminit.
    func minitSignalStack() {
    	mp := getg().m
    	var st stackt
    	sigaltstack(nil, &st)
    	if st.ss_flags&_SS_DISABLE != 0 || !iscgo {
    		signalstack(&mp.gsignal.stack)
    		mp.newSigstack = true
    	} else {
    		setGsignalStack(&st, &mp.goSigStack)
    		mp.newSigstack = false
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  2. src/runtime/runtime2.go

    	locks         int32
    	dying         int32
    	profilehz     int32
    	spinning      bool // m is out of work and is actively looking for work
    	blocked       bool // m is blocked on a note
    	newSigstack   bool // minit on C thread called sigaltstack
    	printlock     int8
    	incgo         bool          // m is executing a cgo call
    	isextra       bool          // m is an extra m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
Back to top