Rudiments
memorymap.h
1 // Copyright (c) 2004 David Muse
2 // See the COPYING file for more information.
3 
4  private:
5  // FIXME: it should be possible to copy a memorymap
6  memorymap(const memorymap &m);
7  memorymap &operator=(const memorymap &m);
8 
9  bool mAdvise(unsigned char *start,
10  size_t length, int32_t advice);
11  static bool mLockAll(int32_t flags);
12 
13  memorymapprivate *pvt;
Definition: memorymap.h:11