函数调用上的分段错误与二维数组

时间:2013-03-25 10:36:06

标签: c multidimensional-array static-allocation

我有以下代码:

#define MAXSAMPLES 1024
typedef  int sample_t;
typedef sample_t sub_band_t[MAXSAMPLES][MAXSAMPLES];

void blah(sample_t a[][MAXSAMPLES], int u0, int v0, int u1, int v1) {
. . . . 
} 


int main(int argc, char *argv[]) {
    sub_band_t in_data;
    int k =0;

    if (argc < 2) {
        printf("\nInput filename required\n");
        return 0;
    }

    FILE *input_file = fopen(argv[1], "r");
    char del = '\0';

    int i = 0, j = 0;
    int cols = 0;
    sample_t x;
    while (! feof(input_file)) {
        if (fscanf(input_file, "%d%c", &x, &del) != 2) {
            i--;
            break;
        }
        in_data[i][j] = x;
        if ( del == '\n') {
            i++;
            j =0;
            continue;
        }
        j++;
        cols = j > cols ? j : cols;
        x = 0;
    }
    blah(in_data, 0, 0, i, cols);
}

当我使用10 * 10整数的输入文件运行此程序时,我在main中的blah函数调用中遇到分段错误。我也无法使用gdb收集有关分段错误的任何信息,它只是说:

0x0000000000400928 in blah (a=Cannot access memory at address 0x7ffffdbfe198) at blah.c

我在这里做错了什么?任何帮助都将受到高度赞赏。

2 个答案:

答案 0 :(得分:1)

你将subband_t键入为几个MB大的二维数组。这将需要几MB的堆栈内存。这是否有效是一个实施质量的问题。该程序是否为#define MAXSAMPLES 10段错误?那就是你的问题。

请注意

 while (! feof(input_file)) { ... }

从未工作过,也永远不会,因为EOF标志仅在输入操作命中EOF后设置。请参阅comp.lang.c常见问题解答。

答案 1 :(得分:1)

你在typedef中感到困惑: 你做了:

typedef sample_t sub_band_t[MAXSAMPLES][MAXSAMPLES];
  • 编辑:

这里有一个类似问题的例子: Create a pointer to two-dimensional array

所以看起来typedef是正确的,它可能是在堆栈上分配了这么多内存,当你将MAXSAMPLES定义为10时它是否仍会出错​​? 也像他说的那样有问题。 正如我评论的那样,你的函数看起来接收6个参数而你只发送5 ..