解释线程转储中的行
我试图找出线程转储中的这一行
"RMI TCP Connection....." daemon prio=3 tid=0x0000000106f12000
nid=0x1e10 runnable [0xfffffffe48dfe000]
runnable 之后的地址是什么?看起来像一个堆栈地址,它是堆栈顶部吗?
I am trying to figure out this line in a thread dump
"RMI TCP Connection....." daemon prio=3 tid=0x0000000106f12000
nid=0x1e10 runnable [0xfffffffe48dfe000]
What is that address after runnable ? Looks like a stack address is it the top of the stack ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在源代码中,它被称为last_Java_sp,因此它是堆栈的顶部(或最后一个已知的堆栈顶部)。
In the source code it's called last_Java_sp, so it's the top of the stack (or the last known top of the stack).