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

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  * wmapper.c -- simple file that mmap()s a file region and writes to it
  3.  *
  4.  * Copyright (C) 1998,2000,2001 Alessandro Rubini
  5.  * 
  6.  *   This program is free software; you can redistribute it and/or modify
  7.  *   it under the terms of the GNU General Public License as published by
  8.  *   the Free Software Foundation; either version 2 of the License, or
  9.  *   (at your option) any later version.
  10.  *
  11.  *   This program is distributed in the hope that it will be useful,
  12.  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  *   GNU General Public License for more details.
  15.  *
  16.  *   You should have received a copy of the GNU General Public License
  17.  *   along with this program; if not, write to the Free Software
  18.  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  19.  */
  20. #include <stdio.h>
  21. #include <stdlib.h>
  22. #include <string.h>
  23. #include <unistd.h>
  24. #include <sys/mman.h>
  25. #include <errno.h>
  26. int main(int argc, char **argv)
  27. {
  28.     char *fname;
  29.     FILE *f;
  30.     unsigned int offset, len;
  31.     unsigned char *address;
  32.     int i, c;
  33.     if (argc !=4
  34.        || sscanf(argv[2],"%i", &offset) != 1
  35.        || sscanf(argv[3],"%i", &len) != 1) {
  36.         fprintf(stderr, "%s: Usage "%s <file> <offset> <len>"n", argv[0],
  37.                 argv[0]);
  38.         exit(1);
  39.     }
  40.     fname=argv[1];
  41.     if (!(f=fopen(fname,"r+"))) {
  42.         fprintf(stderr, "%s: %s: %sn", argv[0], fname, strerror(errno));
  43.         exit(1);
  44.     }
  45.     address=mmap(0, len, PROT_READ | PROT_WRITE,
  46.  MAP_FILE | MAP_SHARED, fileno(f), offset);
  47.     if (address == (void *)-1) {
  48.         fprintf(stderr,"%s: mmap(): %sn",argv[0],strerror(errno));
  49.         exit(1);
  50.     }
  51.     fclose(f);
  52.     for (i=0; i<len; i++) {
  53.         c = getchar();
  54.         if (c==-1)
  55.             return 0;
  56.         address[i]=c;
  57.     }
  58.     return 0;
  59. }
  60.