2
shmgetを2次元配列で使用しようとしています。 これは私のコードです:C:2次元配列のshmget
char **array;
key_t key;
int size;
int shm_id;
int i = 0;
void *addr;
key = // here I get the key with ftok()
size = (21 * sizeof(char *)) + (21 * sizeof(char **));
shm_id = // here I get the shmid with shmget()
if (shm_id == -1) // Creation
{
array = (char **)shmat(shm_id, NULL, SHM_R | SHM_W);
while (i != 20)
{
array[i] = memset(array[i], ' ', 20);
array[i][20] = '\0';
i++;
}
array[i] = NULL;
shm_id = // here I get the shmid with the flag IPC_CREAT to create the shared memory
addr = shmat(shm_id, NULL, SHM_R | SHM_W);
}
しかし、私はラインでセグメンテーションフォールトをしました "配列[i]はmemsetの(配列[i]は、 ''、20)=;"
私は間違っていますか?