bloom_filter_prl.exe 中 0x013f3277 处未处理的异常:0xC00000FD:堆栈溢出
当我尝试在 vc 2010 中调试程序时,出现上述错误。它发生在主函数的第一行,当我中断调试
int main(int argc, char* argv[])
{
std::vector<std::string> word_list;
时,它会转到“chkstk.stm”并指示可能的错误如下==>
查找下一页并探测 cs20:
sub eax, _PAGESIZE_ ;减少 PAGESIZE 测试双字 ptr [eax],eax ;探测页面。 jmp短cs10
_chkstk 结束
<前><代码>结束
i get the above error when i try to debug my program in vc 2010. it happens at the first line of the main function where I have the following line
int main(int argc, char* argv[])
{
std::vector<std::string> word_list;
when i break the debugging it goes to "chkstk.stm" and indicates the possible error to be the following==>
Find next lower page and probe cs20:
sub eax, _PAGESIZE_ ; decrease by PAGESIZE test dword ptr [eax],eax ; probe page. jmp short cs10
_chkstk endp
end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我试图在我的用户定义的头文件之一上进行大量分配。
I was trying to have large allocations on one of my user defined header files.