diff --git a/proc/stack.go b/proc/stack.go index 90044823..aa4e6585 100644 --- a/proc/stack.go +++ b/proc/stack.go @@ -135,7 +135,7 @@ func (it *stackIterator) Next() bool { return true } // Look for "top of stack" functions. - if it.frame.Current.Fn.Name == "runtime.goexit" || it.frame.Current.Fn.Name == "runtime.rt0_go" { + if it.frame.Current.Fn.Name == "runtime.goexit" || it.frame.Current.Fn.Name == "runtime.rt0_go" || it.frame.Current.Fn.Name == "runtime.mcall" { it.atend = true return true }