runtime.g.syscallsp (field)
30 uses
runtime (current package)
cgocall.go#L221: savedsp := unsafe.Pointer(gp.syscallsp)
heapdump.go#L344: if gp.syscallsp != 0 {
heapdump.go#L345: sp = gp.syscallsp
panic.go#L1357: if status&^_Gscan != _Grunning || gp.syscallsp != 0 {
proc.go#L1907: gp.syscallsp = gp.sched.sp
proc.go#L2543: if gp.syscallsp != 0 && gp.sysblocktraced {
proc.go#L3514: _g_.syscallsp = sp
proc.go#L3517: if _g_.syscallsp < _g_.stack.lo || _g_.stack.hi < _g_.syscallsp {
proc.go#L3519: print("entersyscall inconsistent ", hex(_g_.syscallsp), " [", hex(_g_.stack.lo), ",", hex(_g_.stack.hi), "]\n")
proc.go#L3611: _g_.syscallsp = _g_.sched.sp
proc.go#L3613: if _g_.syscallsp < _g_.stack.lo || _g_.stack.hi < _g_.syscallsp {
proc.go#L3616: sp3 := _g_.syscallsp
proc.go#L3623: if _g_.syscallsp < _g_.stack.lo || _g_.stack.hi < _g_.syscallsp {
proc.go#L3625: print("entersyscallblock inconsistent ", hex(sp), " ", hex(_g_.sched.sp), " ", hex(_g_.syscallsp), " [", hex(_g_.stack.lo), ",", hex(_g_.stack.hi), "]\n")
proc.go#L3662: if getcallersp() > _g_.syscallsp {
proc.go#L3682: _g_.syscallsp = 0
proc.go#L3726: _g_.syscallsp = 0
proc.go#L4478: if mp.ncgo > 0 && mp.curg != nil && mp.curg.syscallpc != 0 && mp.curg.syscallsp != 0 {
proc.go#L4494: n = gentraceback(mp.curg.syscallpc, mp.curg.syscallsp, 0, mp.curg, 0, &stk[cgoOff], len(stk)-cgoOff, nil, nil, 0)
runtime2.go#L420: syscallsp uintptr // if status==Gsyscall, syscallsp = sched.sp to use during gc
stack.go#L839: if gp.syscallsp != 0 {
stack.go#L956: gp.syscallsp = morebuf.sp
stack.go#L1119: return gp.syscallsp == 0 && !gp.asyncSafePoint && atomic.Load8(&gp.parkingOnChan) == 0
traceback.go#L113: if gp.syscallsp != 0 {
traceback.go#L115: sp0 = gp.syscallsp
traceback.go#L708: if iscgo && gp.m != nil && gp.m.ncgo > 0 && gp.syscallsp != 0 && gp.m.cgoCallers != nil && gp.m.cgoCallers[0] != 0 {
traceback.go#L727: sp = gp.syscallsp
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |