Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 52 of 52 for sigaltstack (0.24 sec)

  1. src/runtime/runtime2.go

    	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
    	isExtraInC    bool          // m is an extra m that is not executing Go code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    	// The signal handler may call needm itself,
    	// and we must avoid a deadlock. Also, once g is installed,
    	// any incoming signals will try to execute,
    	// but we won't have the sigaltstack settings and other data
    	// set up appropriately until the end of minit, which will
    	// unblock the signals. This is the same dance as when
    	// starting a new m to run Go code via newosproc.
    	var sigmask sigset
    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