我正在尝试使用指向“低级”集合结构的指针来实现缓存结构。应该模拟一个缓存。当我尝试在initCache函数中分配缓存结构时,出现段错误。我读过其他文章,我很确定这不是语法,但是我是C语言的新手,所以我可能使用了错误的指针。我收到一条警告,说L1cache可能尚未初始化,并且我也检查了与此相关的帖子,但是没有运气,尝试其他方法。

为了清楚起见,缓存定义中的** sets应该是一个指针数组,其中数组中的每个指针都指向一个结构

缓存结构定义为:

/* Struct representing the cache */
struct cache{
    set **sets; /* Array of set pointers */
};


initCache在main中这样调用:

cache* L1cache;
initCache(L1cache, nSets, setSize);


initCache的代码是:

void initCache(cache* c, int nSets, int setSize){
    int i;

    c->sets=malloc(nSets*sizeof(set*)); /* SEG FAULT HERE malloc space for array of pointers to each set       */

    for(i = 0; i < nSets; i++){
        c->sets[i]=malloc(sizeof(set)); /* malloc space for each set */
    initSet(c->sets[i],setSize);
}

    return;
}

最佳答案

您需要初始化L1cache

cache *L1cache = malloc(sizeof (cache));


或者,您可以将其声明为普通变量:

char L1cache;
initCache(&L1cache, nSets, setSize);

09-06 02:22