Я пытаюсь использовать mmap для помещения файла в память, используя функцию объекта. Я думаю, что у меня есть проблема с моими указателями, но я не могу ее получить. Когда я использую mmap в main (), все идет хорошо:
int main(){
int fd = open("../../../some_file.txt", O_RDONLY, S_IRUSR);
struct stat sb;
if(fstat(fd,&sb)==-1) {
perror("could not get file size");
exit(1);
}
printf("File size is %ld bytes\n", sb.st_size);
int B = 5000;
int pages = int(ceil((double)B/PAGESIZE));
printf("mmap will map %d pages for a total of %d bytes\n", pages, pages*PAGESIZE);
char * map = (char*)mmap(NULL, B, PROT_READ, MAP_PRIVATE, fd,0);
printf("map:\t%p\n", map);
printf("%c\n", map[0]);
int res = munmap(map, B);
}
И я получаю следующий (ожидаемый) вывод:
File size is 73004383 bytes
mmap will map 2 pages for a total of 8192 bytes
map: 0x7fb8b0bed000
J
Проблема возникает всякий раз, когда я пытаюсь использовать mmapиз объектной функции:
int main(){
string inputFile = "../../../some_file.txt";
Input* input = new Input();
input->read_test(inputFile);
}
class Input{
Input(void){ }
void read_test(const string &inputFile) {
if(fd = open(inputFile.c_str(), O_RDWR, S_IRUSR) == -1 ){
perror("Error while opening the file\n");
exit(1);
}
struct stat sb;
if(fstat(fd,&sb)==-1) {
perror("could not get file size");
exit(1);
}
printf("File size is %ld bytes\n", sb.st_size);
int B = 5;
int pages = int(ceil((double)B/pagesize));
printf("mmap will map %d page(s) for a total of %d bytes\n", pages, pages*pagesize);
char* map = (char*) mmap(NULL, B, PROT_READ, MAP_PRIVATE, fd, 0);
printf("map:\t%p\n", map);
printf("%c\n", map[0]);
}
Mmap () не работает, и я получаю ошибку сегмента:
File size is 73004383 bytes
mmap will map 1 page(s) for a total of 4096 bytes
map: 0xffffffffffffffff
./main line 3: 6505 Segmentation fault (core dumped) ./main