そのファイルのメモリマップがまだない場合は、ファイルをメモリマップする必要があります。私が提供したコードは機能していません。この関数を別のファイルから 2 回呼び出しており、そのたびに異なる mmapPtr を作成しています。
char *mmapPtr;
void MemoryMapFile()
{
int fd;
struct stat sbuf;
if(mmapPtr==NULL) <--- why is this executed when I called MemoryMapFile() second time
{
// get file descriptor of file
if ((fd = open("example.c", O_RDONLY)) == -1)
{
perror("open");
exit(1);
}
if (stat("example.c", &sbuf) == -1)
{
perror("stat");
exit(1);
}
if ((data = mmap((caddr_t)0, sbuf.st_size, PROT_READ, MAP_SHARED, fd, 0)) == (caddr_t)(-1))
{
perror("mmap");
exit(1);
}
printf("mmap pointer %p \n",mmapPtr);
}