共享内存linux

时间:2015-04-11 15:21:36

标签: c linux shared-memory

我第一次尝试使用共享内存。我创建了一个子进程,我从Parent写入共享内存并从Child更改它,在程序结束之前我从Parent打印共享内存并且共享内存没有改变,这是我的代码:

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/wait.h>

#include <semaphore.h>
#include <fcntl.h>
#include <sys/shm.h>
#include <signal.h>

sem_t *semaphore;


int main(){

    int i = 0, status;
    pid_t pid=fork(), w;

    int id;
    if ((id = shmget(IPC_PRIVATE, sizeof(int), IPC_CREAT | 0666)) == -1){
        perror("shmget");
        exit(1);
    }
    int *sh;
    if ((sh =(int *) shmat(id, NULL, 0)) == NULL){
        perror("shmat");
        exit(1);
    }
    *sh = 10;

    if ((semaphore = sem_open("/semaphore", O_CREAT, 0666, 0)) == SEM_FAILED){
        perror("semaphore");
        exit(1);
    }

    if (pid==0) {
         while(1){
            sleep(1);
            *sh = 50;
            printf("child %d, %d\n", i, *sh);
            i++;
            if(i == 5){
                sem_post(semaphore);
                exit(0);
            }
         }

    } else if (pid==-1) {
        perror("process error\n");
    } else {
        printf("Parent, %d\n", *sh);
        sem_wait(semaphore);
        printf("child end => parent end\n");
        printf("Parent, %d\n", *sh);
    }


    shmctl(id, IPC_RMID, NULL);
    sem_close(semaphore);
    sem_unlink("/semaphore");

    return 0;
}

如果我理解共享内存比我可以从任何地方更改它,如果我的情况下有一个指针是“sh”。

计划的输出是:

Parent, 10
child 0, 50
child 1, 50
child 2, 50
child 3, 50
child 4, 50
child end => parent end
Parent, 10

为什么共享内存中的数字在Parent和Child中不同?

1 个答案:

答案 0 :(得分:1)

在使用密钥fork()创建共享内存之前,您IPC_PRIVATE,因此两个进程都创建了自己的共享内存,并且实际上并未共享它。

如果您从

中删除=fork()
pid_t pid=fork(), w;

并插入

pid = fork();

shmget调用之后的某个地方,它按照您期望的方式工作,因为子进程将从父进程继承共享内存标识符,而不是创建另一个。