Xcode __pthread_kill + 20

时间:2015-04-10 22:58:55

标签: c++ c xcode console-application

我正在尝试使用大型数组运行简单的命令行应用程序,如果我尝试循环遍历30行数组,它会工作,但当我将其增加到1000时,它会崩溃,在控制台中显示(lldb)。在线程1下我有__pthread_kill,__ stack_chk_fail。我的代码:

int main(int argc, const char * argv[]) {


int i;
int j;
int x;


int mains [2][50]={1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,
    31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50};
int stars [2][11]={1,2,3,4,5,6,7,8,9,10,11};

int results [1000][7]={

    {27,29,37,39,49,2,4}, //03.04.2015

    {8,20,24,28,49,8,9},

 // rest of array not relevant to the problem

    {16,29,32,36,41,7,9},

};



for (i=0; i<1000; i++)
{
    for (j=0; j<5; j++)
    {
        for (x=0; x<51; x++)
        {
            if (results[i][j]==mains[0][x])
            {
                mains[1][x]++;
            }
        }

    }
}

for (i=0; i<1000; i++)
{
    for (j=5; j<7; j++)
    {
        for (x=0; x<12; x++)
        {
            if (results[i][j]==stars[0][x])
            {
                stars[1][x]++;
            }
        }

    }
}



for (i=0; i<49; i++)      //array sorting
{
    for (j=i+1; j<50; j++)
    {
        if (mains[1][i]>mains[1][j])
        {
            std::swap(mains[0][i],mains[0][j]);
            std::swap(mains[1][i],mains[1][j]);            }
    }

}

for (i=0; i<10; i++)      //array sorting
{
    for (j=i+1; j<11; j++)
    {
        if (stars[1][i]>stars[1][j])
        {
            std::swap(stars[0][i],stars[0][j]);
            std::swap(stars[1][i],stars[1][j]);            }
    }

}




printf("Mains        Stars:\n\n");
for (i=0; i<5; i++)
{
    printf("%d ",mains[0][i]);
}

for (i=0; i<2; i++)
{
    printf("%d ",stars[0][i]);
}


return 0;
}

2 个答案:

答案 0 :(得分:0)

    for (x=0; x<51; x++)
              ^^^^
    {
        if (results[i][j]==mains[0][x])
                                   ^^^ 

因此,x从0到50(含)。这意味着mains[0]必须有51个元素。

(如果你不明白为什么,想象一下x是否从0变为4包含。这意味着你需要5个元素,0,{{ 1}},123。因此,如果您从0重复到4,则需要n个元素。)

n+1

哎呀,它只有50个。

答案 1 :(得分:0)

当你增加局部变量的大小时,你的堆栈空间就用完了:

http://refspecs.linux-foundation.org/LSB_4.1.0/LSB-Core-generic/LSB-Core-generic/libc---stack-chk-fail-1.html

  

__ stack_chk_fail - 在堆栈溢出的情况下终止函数