mapper.c
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  * mapper.c -- simple file that mmap()s a file region and prints it
  3.  *
  4.  * Tested with 1.2 on the x86
  5.  * Tested with 2.0 on the x86, Sparc and Alpha
  6.  *
  7.  * Actually, it should run with any Unix
  8.  */
  9. #include <stdio.h>
  10. #include <stdlib.h>
  11. #include <string.h>
  12. #include <unistd.h>
  13. #include <sys/mman.h>
  14. #include <errno.h>
  15. int main(int argc, char **argv)
  16. {
  17.     char *fname;
  18.     FILE *f;
  19.     unsigned int offset, len;
  20.     void *address;
  21.     if (argc !=4
  22.        || sscanf(argv[2],"%i", &offset) != 1
  23.        || sscanf(argv[3],"%i", &len) != 1) {
  24.         fprintf(stderr, "%s: Usage "%s <file> <offset> <len>"n", argv[0],
  25.                 argv[0]);
  26.         exit(1);
  27.     }
  28.     fname=argv[1];
  29.     if (!(f=fopen(fname,"r"))) {
  30.         fprintf(stderr, "%s: %s: %sn", argv[0], fname, strerror(errno));
  31.         exit(1);
  32.     }
  33.     address=mmap(0, len, PROT_READ, MAP_FILE | MAP_PRIVATE, fileno(f), offset);
  34.     if (address == (void *)-1) {
  35.         fprintf(stderr,"%s: mmap(): %sn",argv[0],strerror(errno));
  36.         exit(1);
  37.     }
  38.     fclose(f);
  39.     fprintf(stderr, "mapped "%s" from %i to %in",
  40.             fname, offset, offset+len);
  41.     fwrite(address, 1, len, stdout);
  42.     return 0;
  43. }
  44.