我试图使用以下代码(test.c)“映射”一个二进制文件(〜8Gb)。
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <sys/mman.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#define handle_error(msg) \
do { perror(msg); exit(EXIT_FAILURE); } while (0)
int main(int argc, char *argv[])
{
const char *memblock;
int fd;
struct stat sb;
fd = open(argv[1], O_RDONLY);
fstat(fd, &sb);
printf("Size: %lu\n", (uint64_t)sb.st_size);
memblock = mmap(NULL, sb.st_size, PROT_WRITE, MAP_PRIVATE, fd, 0);
if (memblock == MAP_FAILED) handle_error("mmap");
for(uint64_t i = 0; i < 10; i++)
{
printf("[%lu]=%X ", i, memblock[i]);
}
printf("\n");
return 0;
}
使用gcc -std=c99 test.c -o test
和file
返回的test编译test.c :test: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.15, not stripped
尽管这对于较小的文件来说效果很好,但在尝试加载较大的文件时却出现了分段错误。该程序实际上返回:
Size: 8274324021
mmap: Cannot allocate memory
我设法使用boost :: iostreams :: mapped_file映射了整个文件,但我想使用C和系统调用来实现。我的代码有什么问题?
O_LARGEFILE
标志的文件。检查手册。不确定是否可以mmap
编辑4GB以上的文件。