mirror of
https://github.com/golang/go
synced 2024-11-20 05:44:44 -07:00
runtime: traceback through active lessstack
With this change, a panic trace due to a signal arriving while running on the scheduler stack during a lessstack (a stack unsplit) will trace through the lessstack to show the state of the goroutine that was unsplitting its stack. R=r CC=golang-dev https://golang.org/cl/4206042
This commit is contained in:
parent
63c24081a0
commit
4b376ef328
@ -164,6 +164,18 @@ gentraceback(byte *pc0, byte *sp, G *g, int32 skip, uintptr *pcbuf, int32 max)
|
||||
continue;
|
||||
}
|
||||
|
||||
if(pcbuf == nil && f->entry == (uintptr)runtime·lessstack && g == m->g0) {
|
||||
// Lessstack is running on scheduler stack. Switch to original goroutine.
|
||||
runtime·printf("----- lessstack called from goroutine %d -----\n", m->curg->goid);
|
||||
g = m->curg;
|
||||
stk = (Stktop*)g->stackbase;
|
||||
sp = stk->gobuf.sp;
|
||||
pc = (uintptr)stk->gobuf.pc;
|
||||
fp = nil;
|
||||
lr = 0;
|
||||
continue;
|
||||
}
|
||||
|
||||
// Unwind to next frame.
|
||||
pc = lr;
|
||||
lr = 0;
|
||||
|
@ -149,6 +149,17 @@ gentraceback(byte *pc0, byte *sp, byte *lr0, G *g, int32 skip, uintptr *pcbuf, i
|
||||
continue;
|
||||
}
|
||||
|
||||
if(pcbuf == nil && f->entry == (uintptr)runtime·lessstack && g == m->g0) {
|
||||
runtime·printf("----- lessstack called from goroutine %d -----\n", m->curg->goid);
|
||||
g = m->curg;
|
||||
stk = (Stktop*)g->stackbase;
|
||||
sp = stk->gobuf.sp;
|
||||
pc = (uintptr)stk->gobuf.pc;
|
||||
fp = nil;
|
||||
lr = 0;
|
||||
continue;
|
||||
}
|
||||
|
||||
// Unwind to next frame.
|
||||
pc = lr;
|
||||
lr = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user