Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for signalStack (0.15 sec)

  1. src/runtime/signal_unix.go

    	var gsignalStack gsignalStack
    	setStack := adjustSignalStack(sig, gp.m, &gsignalStack)
    	if setStack {
    		gp.m.gsignal.stktopsp = getcallersp()
    	}
    
    	if gp.stackguard0 == stackFork {
    		signalDuringFork(sig)
    	}
    
    	c.fixsigcode(sig)
    	sighandler(sig, info, ctx, gp)
    	setg(gp)
    	if setStack {
    		restoreGsignalStack(&gsignalStack)
    	}
    }
    
    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/os3_plan9.go

    }
    
    func setProcessCPUProfiler(hz int32) {
    }
    
    func setThreadCPUProfiler(hz int32) {
    	// TODO: Enable profiling interrupts.
    	getg().m.profilehz = hz
    }
    
    // gsignalStack is unused on Plan 9.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    // dropm is called when a cgo callback has called needm but is now
    // done with the callback and returning back into the non-Go thread.
    //
    // The main expense here is the call to signalstack to release the
    // m's signal stack, and then the call to needm on the next callback
    // from this thread. It is tempting to try to save the m for next time,
    // which would eliminate both these costs, but there might not be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. src/runtime/runtime2.go

    	// Fields not known to debuggers.
    	procid        uint64            // for debuggers, but offset not hard-coded
    	gsignal       *g                // signal-handling g
    	goSigStack    gsignalStack      // Go-allocated signal handling stack
    	sigmask       sigset            // storage for saved signal mask
    	tls           [tlsSlots]uintptr // thread-local storage (for x86 extern register)
    	mstartfn      func()
    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