summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian2002-09-01 23:41:47 +0000
committerBruce Momjian2002-09-01 23:41:47 +0000
commit164e1bc9135525c93d4a58102d5eaa57fd4072f6 (patch)
tree13fdf5a9c54db26f4a23bf7fc50c42b8ea53db7f
parent881390fff6371b83670cbbc50cb82003b630e7fc (diff)
Update MEMSET_LOOP_LIMIT to 1024 because it is the best value for most
platforms.
-rw-r--r--src/include/c.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/c.h b/src/include/c.h
index 96a568712dc..1ad03d4d85e 100644
--- a/src/include/c.h
+++ b/src/include/c.h
@@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: c.h,v 1.123 2002/08/25 17:20:01 tgl Exp $
+ * $Id: c.h,v 1.124 2002/09/01 23:41:47 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -600,7 +600,7 @@ typedef NameData *Name;
memset((char *) _start, _val, _len); \
} while (0)
-#define MEMSET_LOOP_LIMIT 64
+#define MEMSET_LOOP_LIMIT 1024
/* ----------------------------------------------------------------