我尝试使用以下代码(test.c)“ mmap”一个二进制文件(~ 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;
}
C 使用测试返回值的 gcc -std=c99 test.c -o test
和 file
进行编译: 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
我设法使用 ost: : iostream: : map _ file 映射整个文件,但是我想使用 C 和系统调用来完成这项工作。我的代码有什么问题吗?