--- mm.h 2002/07/26 13:21:31 1.25
+++ mm.h 2002/12/19 09:14:58 1.26
@@ -6,7 +6,7 @@
* are met:
*
* 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
+ * notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
@@ -62,7 +62,7 @@
#include <sys/types.h>
#include <sys/stat.h>
-typedef enum {
+typedef enum {
MM_LOCK_RD, MM_LOCK_RW
} mm_lock_mode;
@@ -119,7 +119,7 @@
#define offset_of(type,member) ((size_t)(&((type *)0)->member))
#endif
-#if !defined(HAVE_MEMCPY)
+#if !defined(HAVE_MEMCPY)
#if defined(HAVE_BCOPY)
#define memcpy(to,from,len) bcopy(from,to,len)
#else
@@ -135,7 +135,7 @@
#define ERR(type,str) mm_lib_error_set(type,str)
#define FAIL(type,str) { ERR(type,str); goto cus; }
#define BEGIN_FAILURE cus:
-#define END_FAILURE
+#define END_FAILURE
#if defined(HAVE_PATH_MAX)
#define MM_MAXPATH PATH_MAX
@@ -175,7 +175,7 @@
#define KERNEL 1
#endif
#ifdef MM_OS_BS2000
-#define _KMEMUSER
+#define _KMEMUSER
#endif
#include <sys/shm.h>
#ifdef MM_OS_SUNOS
@@ -211,7 +211,7 @@
#include <sys/file.h>
#endif
-#define MM_ALLOC_MINSIZE (1024*8)
+#define MM_ALLOC_MINSIZE (1024*8)
#define MM_CORE_FILEMODE (S_IRUSR|S_IWUSR)
#define MM_CORE_DEFAULT_PAGESIZE (1024*8)
#define MM_CORE_DEFAULT_FILE "/tmp/mm.core.%d" /* %d is PID */
@@ -220,7 +220,7 @@
#define MM_ERR_CORE 2
#define MM_ERR_SYSTEM 4
-/*
+/*
* Define a union with types which are likely to have the longest
* *relevant* CPU-specific memory word alignment restrictions...
*/
|