mmap.h
上传用户:tany51
上传日期:2013-06-12
资源大小:1397k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 2003 Mihai RUSU (dizzy@roedu.net)
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  */
  18. #ifndef INCLUDED_PMMAP_PROTOS
  19. #define INCLUDED_PMMAP_PROTOS
  20. #ifdef HAVE_SYS_TYPES_H
  21. # include <sys/types.h>
  22. #endif
  23. #ifdef HAVE_SYS_MMAN_H
  24. # include <sys/mman.h>
  25. #endif
  26. #ifdef __BORLANDC__
  27. # include <io.h>
  28. #endif
  29. #ifndef PROT_NONE
  30. #define PROT_NONE       0x00    /* no permissions */
  31. #endif
  32. #ifndef PROT_READ
  33. #define PROT_READ       0x01    /* pages can be read */
  34. #endif
  35. #ifndef PROT_WRITE
  36. #define PROT_WRITE      0x02    /* pages can be written */
  37. #endif
  38. #ifndef PROT_EXEC
  39. #define PROT_EXEC       0x04    /* pages can be executed */
  40. #endif
  41. #ifndef MAP_SHARED
  42. #define MAP_SHARED      0x0001          /* share changes */
  43. #endif
  44. #ifndef MAP_PRIVATE
  45. #define MAP_PRIVATE     0x0002          /* changes are private */
  46. #endif
  47. #ifndef MAP_COPY
  48. #define MAP_COPY        MAP_PRIVATE     /* Obsolete */
  49. #endif
  50. #ifndef MAP_FAILED
  51. #define MAP_FAILED      ((void *)-1)
  52. #endif
  53. #ifdef HAVE_MMAP
  54. #define pmmap(a,b,c,d,e,f) mmap(a,b,c,d,e,f)
  55. #define pmunmap(a,b) munmap(a,b)
  56. #else
  57. extern void * pmmap(void *addr, unsigned len, int prot, int flags, int fd, unsigned offset);
  58. extern int pmunmap(void *addr, unsigned len);
  59. #endif
  60. #endif