访问共享内存段时出现分段错误

时间:2014-10-25 16:55:39

标签: c segmentation-fault shared-memory

我需要实现一个在不同进程之间共享信息的程序。

但是当我尝试访问共享结构的成员时,会产生分段错误。

我该如何解决?请参阅下面的代码。

源文件:

#include <string.h>
#include <stdio.h>
#include "ShM.h"

#define SHM_SIZE 1024 

int main(){

    stablishMemory();
    Deck *deck = obtainMemory();
    strncpy(deck->cards,"carlos",SHM_SIZE);
    unlinkMemory();
    return 0;
}

标题文件(ShM.h):

#include <stdio.h>
#include <string.h>
#include <sys/shm.h>
#include <unistd.h>

int idMemory;

typedef struct {
    char *cards;
}Deck;

Deck* letra;
#define SHM_SIZE 1024 

void stablishMemory(){
    idMemory = shmget (obtainkey(), SHM_SIZE, 0777| IPC_CREAT);
    letra = (Deck* )shmat (idMemory, NULL,0);
}

key_t obtainkey(){
    return ftok("/bin/ls",24);
}

void unlinkMemory(){
    shmdt((Deck*)letra);

}

Deck* obtainMemory(){
    return letra;
}

void destroyMemory(){
    shmctl(idMemory, IPC_RMID, (struct shmid_ds*)NULL);
    unlink(" ");
}

1 个答案:

答案 0 :(得分:2)

这种结构不是自包含的。结构可能位于共享内存中,但指针可以指向任何位置。

typedef struct {
    char *cards;  // the memory that cards points to could be outside the segment
} Deck;

你必须分配卡片(它是一个悬空指针),但更重要的是,你还必须从共享区域分配卡片,或者使其成为内联缓冲区(在结构内),如:

要么:

deck = allocSharedMem(sizeof(*deck));
deck->cards = allocSharedMem(52);

或将其内联:

typedef struct {
    char cards[52];
} Deck;