aboutsummaryrefslogtreecommitdiff
path: root/src/mmap.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2011-08-13 16:40:20 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2011-08-13 16:40:20 +0000
commit32e37c92ed9b7f36c21aff993f3dce93a43cc036 (patch)
tree8b535a51d39fd53cba8e1edc6af4e75f531edc93 /src/mmap.c
parent4a6f4e5154c958d03d12fe67b31bef90de941e25 (diff)
downloadgdbm-32e37c92ed9b7f36c21aff993f3dce93a43cc036.tar.gz
gdbm-32e37c92ed9b7f36c21aff993f3dce93a43cc036.tar.bz2
Verify preprocessor directives. Pass them through cppi to
reflect their nesting level.
Diffstat (limited to 'src/mmap.c')
-rw-r--r--src/mmap.c34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/mmap.c b/src/mmap.c
index f654af3..f0cd4e3 100644
--- a/src/mmap.c
+++ b/src/mmap.c
@@ -18,32 +18,32 @@
#if HAVE_MMAP
-#include "gdbmdefs.h"
+# include "gdbmdefs.h"
-#include <sys/types.h>
-#include <sys/time.h>
-#include <sys/file.h>
-#include <sys/stat.h>
-#include <sys/mman.h>
-#include <stdio.h>
+# include <sys/types.h>
+# include <sys/time.h>
+# include <sys/file.h>
+# include <sys/stat.h>
+# include <sys/mman.h>
+# include <stdio.h>
/* Some systems fail to define this */
-#ifndef MAP_FAILED
-# define MAP_FAILED ((void*)-1)
-#endif
+# ifndef MAP_FAILED
+# define MAP_FAILED ((void*)-1)
+# endif
/* Translate current offset in the mapped region into the absolute position */
-#define _GDBM_MMAPPED_POS(dbf) ((dbf)->mapped_off + (dbf)->mapped_pos)
+# define _GDBM_MMAPPED_POS(dbf) ((dbf)->mapped_off + (dbf)->mapped_pos)
/* Return true if the absolute offset OFF lies within the currentlty mmapped
region */
-#define _GDBM_IN_MAPPED_REGION_P(dbf, off) \
+# define _GDBM_IN_MAPPED_REGION_P(dbf, off) \
((off) >= (dbf)->mapped_off \
&& ((off) - (dbf)->mapped_off) < (dbf)->mapped_size)
/* Return true if the current region needs to be remapped */
-#define _GDBM_NEED_REMAP(dbf) \
+# define _GDBM_NEED_REMAP(dbf) \
(!(dbf)->mapped_region || (dbf)->mapped_pos == (dbf)->mapped_size)
/* Return the sum of the currently mapped size and DELTA */
-#define SUM_FILE_SIZE(dbf, delta) \
+# define SUM_FILE_SIZE(dbf, delta) \
((dbf)->mapped_off + (dbf)->mapped_size + (delta))
/* Store the size of the GDBM file DBF in *PSIZE.
@@ -107,9 +107,9 @@ _gdbm_internal_remap (GDBM_FILE dbf, size_t size)
return 0;
}
-#define _REMAP_DEFAULT 0
-#define _REMAP_EXTEND 1
-#define _REMAP_END 2
+# define _REMAP_DEFAULT 0
+# define _REMAP_EXTEND 1
+# define _REMAP_END 2
/* Remap the GDBM file so that its mapped region ends on SIZEth byte.
If the file is opened with write permissions, FLAG controls how

Return to:

Send suggestions and report system problems to the System administrator.