如果该文件还没有一个文件,我必须内存映射一个文件。我提供的代码不起作用。我从另一个文件调用这个函数两次,每次它创建不同的 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);
}