home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / gnu / groff-1.09-src.lha / src / amiga / groff-1.09 / libbib / map.c < prev    next >
C/C++ Source or Header  |  1992-08-03  |  2KB  |  76 lines

  1. /* Copyright (C) 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
  2.      Written by James Clark (jjc@jclark.com)
  3.  
  4. This file is part of groff.
  5.  
  6. groff is free software; you can redistribute it and/or modify it under
  7. the terms of the GNU General Public License as published by the Free
  8. Software Foundation; either version 2, or (at your option) any later
  9. version.
  10.  
  11. groff is distributed in the hope that it will be useful, but WITHOUT ANY
  12. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14. for more details.
  15.  
  16. You should have received a copy of the GNU General Public License along
  17. with groff; see the file COPYING.  If not, write to the Free Software
  18. Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
  19.  
  20. #ifdef HAVE_MMAP
  21.  
  22. #include <sys/types.h>
  23. #include <sys/mman.h>
  24.  
  25. /* The Net-2 man pages says that a MAP_FILE flag is required. */
  26. #ifndef MAP_FILE
  27. #define MAP_FILE 0
  28. #endif
  29.  
  30. char *mapread(fd, nbytes)
  31.      int fd;
  32.      int nbytes;
  33. {
  34.   char *p = (char *)mmap((caddr_t)0, (size_t)nbytes, PROT_READ,
  35.              MAP_FILE|MAP_PRIVATE, fd, (off_t)0);
  36.   if (p == (char *)-1)
  37.     return 0;
  38.   /* mmap() shouldn't return 0 since MAP_FIXED wasn't specified. */
  39.   if (p == 0)
  40.     abort();
  41.   return p;
  42. }
  43.  
  44. int unmap(p, len)
  45.      char *p;
  46.      int len;
  47. {
  48.   return munmap((caddr_t)p, len);
  49. }
  50.  
  51. #else /* not HAVE_MMAP */
  52.  
  53. #include <errno.h>
  54.  
  55. #ifndef errno
  56. extern int errno;
  57. #endif
  58.  
  59. char *mapread(fd, nbytes)
  60.      int fd;
  61.      int nbytes;
  62. {
  63.   errno = ENODEV;
  64.   return 0;
  65. }
  66.  
  67. int unmap(p, len)
  68.      char *p;
  69.      int len;
  70. {
  71.   errno = EINVAL;
  72.   return -1;
  73. }
  74.  
  75. #endif /* not HAVE_MMAP */
  76.