给定以下代码:
#include <sys/types.h>
#include <sys/shm.h>
#include <stdio.h>
#include <sys/types.h>
int main()
{
int arr[100];
int shmid = shmget(IPC_PRIVATE, sizeof(int), 0600);
int *ptr = shmat(shmid, NULL, 0);
*ptr = 42;
arr[0] = 1;
if (fork())
{
wait(NULL);
printf("%d, %d\n",arr[0],*ptr);
}
else
{
arr[0] = 2;
*ptr = 1337;
}
return 0;
}
输出是:1,1337
。
问题:为什么不是2,1337
?
如果孩子更新arr
and ptr
is his block 怎么可能?意思是,父进程更新arr[0]
到发生1
之前fork()
,那么为什么更新ptr
发生了而没有更新arr[0]
到值2
呢?
最好的祝福