summaryrefslogtreecommitdiff
path: root/PACE/pace/win32/mman.h
blob: 485cf22103cbe0a2aab9dd17468a179fce485334 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/* $Id$

 * ============================================================================
 *
 * = LIBRARY
 *    pace
 *
 * = FILENAME
 *    pace/win32/mman.h
 *
 * = AUTHOR
 *    Luther Baker
 *
 * ============================================================================ */

#ifndef PACE_SYS_MMAN_H
#define PACE_SYS_MMAN_H

#include <sys/mman.h>

#if defined (PACE_HAS_CPLUSPLUS)
extern "C" {
#endif /* PACE_HAS_CPLUSPLUS */

#define PACE_MAP_FAILED MAP_FAILED
#define PACE_MAP_FIXED MAP_FIXED
#define PACE_MAP_PRIVATE MAP_PRIVATE
#define PACE_MAP_SHARED MAP_SHARED
#define PACE_MCL_CURRENT MCL_CURRENT
#define PACE_MS_ASYNC MS_ASYNC
#define PACE_MS_INVALIDATE
#define PACE_MS_SYNC MS_SYNC
#define PACE_PROT_EXEC PROT_EXEC
#define PACE_PROT_NONE PROT_NONE
#define PACE_PROT_READ PROT_READ
#define PACE_PROT_WRITE PROT_WRITE

  /**
     PACE's implementation of the POSIX function mlock.
     See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
     IEEE Std 1003.1, 1996 Edition), Section 12.1.2.
   */
  PACE_INLINE int pace_mlock (const void * addr, size_t len);

  /**
     PACE's implementation of the POSIX function mlockall.
     See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
     IEEE Std 1003.1, 1996 Edition), Section 12.1.1.
   */
  PACE_INLINE int pace_mlockall (int flags);

  /**
     PACE's implementation of the POSIX function mmap.
     See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
     IEEE Std 1003.1, 1996 Edition), Section 12.2.1.
   */
  PACE_INLINE void * pace_mmap (void * addr,
                                size_t len,
                                int prot,
                                int flags,
                                int fildes,
                                off_t off);

  /**
     PACE's implementation of the POSIX function mprotect.
     See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
     IEEE Std 1003.1, 1996 Edition), Section 12.2.3.
   */
  PACE_INLINE int pace_mprotect (void * addr,
                                 size_t len,
                                 int prot);

  /**
     PACE's implementation of the POSIX function msync.
     See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
     IEEE Std 1003.1, 1996 Edition), Section 12.2.4.
   */
  PACE_INLINE int pace_msync (void * addr,
                              size_t len,
                              int flags);

  /**
     PACE's implementation of the POSIX function munlock.
     See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
     IEEE Std 1003.1, 1996 Edition), Section 12.1.2.
   */
  PACE_INLINE int pace_munlock (const void * addr, size_t len);

  /**
     PACE's implementation of the POSIX function munlockall.
     See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
     IEEE Std 1003.1, 1996 Edition), Section 12.1.1.
   */
  PACE_INLINE int pace_munlockall ();

  /**
     PACE's implementation of the POSIX function munmap.
     See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
     IEEE Std 1003.1, 1996 Edition), Section 12.2.2.
   */
  PACE_INLINE int pace_munmap (void *addr, size_t len);

  /**
     PACE's implementation of the POSIX function shm_open.
     See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
     IEEE Std 1003.1, 1996 Edition), Section 12.3.1.
   */
  PACE_INLINE int pace_shm_open (const char * name,
                                 int oflag,
                                 mode_t mode);
  /* Requires PACE_POSIX_C_SOURCE > 2. */

  /**
     PACE's implementation of the POSIX function shm_open.
     See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
     IEEE Std 1003.1, 1996 Edition), Section 12.3.2.
   */
  PACE_INLINE int pace_shm_unlink (const char * name);
  /* Requires PACE_POSIX_C_SOURCE > 2. */

#if defined (PACE_HAS_CPLUSPLUS)
}
#endif /* PACE_HAS_CPLUSPLUS */

#if defined (PACE_HAS_INLINE)
# include "pace/win32/mman.inl"
#endif /* PACE_HAS_INLINE */

#endif /* PACE_SYS_MMAN_H */