如何调试 Ruby 1.9.2 中的堆栈溢出?
我有一些 Ruby 代码位于 Chipmunk 和 OpenGL C 库之上。我的程序中的某些内容导致 C 或 Ruby 级别的堆栈溢出。我正在寻找一些策略来找出大多数对象的创建位置。在 Ruby 1.9+ 中调试堆栈溢出的最佳策略是什么?
谢谢!
I have some Ruby code sits on top of Chipmunk and OpenGL C libraries. Something in my program is causing a stack overflow at the C or Ruby level. I'm looking for some strategies to figure out where the majority of objects are getting created. What are your best strategies for debugging a stack overflow in Ruby 1.9+?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,堆栈溢出不是由过多的对象引起的,而是由过度的递归引起的。
As far as I know, stack overflows aren't caused by an excess of objects, but by excessive recursion.