1

我有以下段错误的代码,我完全不知道为什么。任何帮助将不胜感激。

当我这样做时会发生段错误(检查所有内容是否已正确初始化)。没有打印任何内容,因此它在第一行出现段错误。不幸的是,我无法使用 valgrind,因为此代码位于我无法访问的沙箱中,因此无法检查那里的问题。

for (i = 0 ; i<nb_read ; i++) {

 fprintf(stdout, "Read Lock i %d  %p \n ",i, nap->read_buffer[i]->sem_handle); 
 fprintf(stdout, "Write Lock i %d  %p \n ",i, nap->write_buffer[i]->sem_handle);  
 fprintf(stdout, "Read Buffer i %d  %p \n ",i, nap->read_buffer[i]->buffer); 
 fprintf(stdout, "Write Buffer i %d  %p \n ",i, nap->write_buffer[i]->buffer); 

}

其中 SharedStruct 是具有 char* 缓冲区成员和 int sem_handle 的结构

SharedStruct** create_buffer(int nb, int size) {
SharedStruct** result = malloc(nb * sizeof(SharedStruct*));
int i = 0 ;
for (i = 0 ; i<nb ; i++) {
        SharedStruct* res= malloc(nb *sizeof(SharedStruct));
        res->buffer = malloc(size * sizeof(char)); 
        int lock = initialise_protection();
        fprintf(stdout, "\n Semaphore initialised to %d \n ", lock);
        res->sem_handle = lock ;
    }
    return result ;
 }
4

2 回答 2

6

我没有看到您初始化结果中包含的指针。您刚刚为它们分配了空间,似乎您忘记了在循环中执行 result[i]=res 。

于 2012-08-02T18:55:35.407 回答
1

第一的。您应该正确缩进代码,否则您无法阅读自己的代码。

接下来,您将其初始化result为条目数组nb,而根本没有对其进行初始化。

接下来,您nb分配一个指向 (SharedStruct*) 的指针,并为每个这样的结构分配一个缓冲区,该缓冲区不会保留在任何地方,因此您以后无法释放它。

于 2012-08-02T19:03:16.960 回答