Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for gFromSP (0.07 sec)

  1. src/runtime/os_windows.go

    	c.contextflags = _CONTEXT_CONTROL
    	stdcall2(_GetThreadContext, thread, uintptr(unsafe.Pointer(c)))
    
    	gp := gFromSP(mp, c.sp())
    
    	sigprof(c.ip(), c.sp(), c.lr(), gp, mp)
    }
    
    func gFromSP(mp *m, sp uintptr) *g {
    	if gp := mp.g0; gp != nil && gp.stack.lo < sp && sp < gp.stack.hi {
    		return gp
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
Back to top