git @ Cat's Eye Technologies The-Dipple / b695298
Fix up the mmap() example a bit. catseye 12 years ago
1 changed file(s) with 19 addition(s) and 16 deletion(s). Raw diff Collapse all Expand all
22 #include <sys/types.h>
33
44 #include <stdio.h>
5 #include <stdlib.h>
65 #include <fcntl.h>
6 #include <unistd.h>
77
88 int main(int argc, char **argv)
99 {
1515 fd = open(argv[1], O_RDONLY);
1616 if (fd == -1) {
1717 perror("Can't open file for reading");
18 exit(1);
18 return 1;
1919 }
2020 fstat(fd, &fileinfo);
2121
22 buffer = mmap(0, fileinfo.st_size, PROT_READ, MAP_SHARED, fd, 0);
23 if (buffer == MAP_FAILED) {
24 close(fd);
25 perror("Can't mmap the file");
26 exit(1);
22 if (fileinfo.st_size > 0) {
23 buffer = mmap(0, fileinfo.st_size, PROT_READ, MAP_SHARED, fd, 0);
24 if (buffer == MAP_FAILED) {
25 close(fd);
26 perror("Can't mmap the file");
27 return 1;
28 }
29
30 ptr = buffer;
31 for (i = 0; i < fileinfo.st_size; i++) {
32 printf("%c", *ptr);
33 ptr++;
34 }
35
36 if (munmap(buffer, fileinfo.st_size) == -1) {
37 perror("Can't un-mmap the file");
38 }
2739 }
2840
29 ptr = buffer;
30 for (i = 0; i < fileinfo.st_size; i++) {
31 printf("%c", *ptr);
32 ptr++;
33 }
34
35 if (munmap(buffer, fileinfo.st_size) == -1) {
36 perror("Can't un-mmap the file");
37 }
3841 close(fd);
3942 return 0;
4043 }