我的程序正在经历一个无限循环,我试图找出原因。(这不是我要问的)。我通常会去 GDB 找出问题所在,但实际上在我的程序开始时,它总是因这条消息而崩溃。
__strcmp_ia32 () 在 ../sysdeps/i386/i686/multiarch/../strcmp.S:34
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
//Prototypes and linked lists here
int debugMode(int argc, char** argv)
{
if(strcmp(argv[argc-1], "-d") == 0) // GDB stops right here.
return 1;
else
return 0;
}
int main(int argc, char** argv)
{
int debug, integer;
char choice;
node *head = NULL;
node *current;
debug = debugMode(argc, argv);
// stuff here
}
请记住,我确实有一个函数原型。谢谢你的帮助。
编辑:顺便说一句,我没有发送任何论据。我正在使用重定向来找出导致我的程序执行无限循环的原因。