aboutsummaryrefslogtreecommitdiff
path: root/src/include/miscadmin.h
diff options
context:
space:
mode:
authorJan Wieck <JanWieck@Yahoo.com>2003-11-13 05:34:58 +0000
committerJan Wieck <JanWieck@Yahoo.com>2003-11-13 05:34:58 +0000
commit923e994d7901d7c0268725e219002af3b2d40dfc (patch)
tree74346d015a246ecb57b4bb4f4c25974f571b3265 /src/include/miscadmin.h
parent256d2f09b58c45ad8ddda8f46d22915a8eaa5600 (diff)
downloadpostgresql-923e994d7901d7c0268725e219002af3b2d40dfc.tar.gz
postgresql-923e994d7901d7c0268725e219002af3b2d40dfc.zip
ARC strategy backed out ... sorry
Jan
Diffstat (limited to 'src/include/miscadmin.h')
-rw-r--r--src/include/miscadmin.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h
index 492f16cc115..d5b509fe511 100644
--- a/src/include/miscadmin.h
+++ b/src/include/miscadmin.h
@@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: miscadmin.h,v 1.135 2003/11/13 00:40:01 wieck Exp $
+ * $Id: miscadmin.h,v 1.136 2003/11/13 05:34:58 wieck Exp $
*
* NOTES
* some of the information in this file should be moved to
@@ -96,13 +96,6 @@ extern void ProcessInterrupts(void);
CritSectionCount--; \
} while(0)
-#define PG_DELAY(_msec) \
-{ \
- struct timeval delay; \
- delay.tv_sec = (_msec) / 1000; \
- delay.tv_usec = ((_msec) % 1000) * 1000; \
- (void) select(0, NULL, NULL, NULL, &delay); \
-}
/*****************************************************************************
* globals.h -- *