summaryrefslogtreecommitdiff
path: root/src/backend/utils/init/enbl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/utils/init/enbl.c')
-rw-r--r--src/backend/utils/init/enbl.c47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/backend/utils/init/enbl.c b/src/backend/utils/init/enbl.c
deleted file mode 100644
index 137653e31a0..00000000000
--- a/src/backend/utils/init/enbl.c
+++ /dev/null
@@ -1,47 +0,0 @@
-/*-------------------------------------------------------------------------
- *
- * enbl.c
- * POSTGRES module enable and disable support code.
- *
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
- * Portions Copyright (c) 1994, Regents of the University of California
- *
- *
- * IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/init/Attic/enbl.c,v 1.10 2000/01/26 05:57:26 momjian Exp $
- *
- *-------------------------------------------------------------------------
- */
-#include "postgres.h"
-#include "utils/module.h"
-
-/*
- * BypassEnable
- * False iff enable/disable processing is required given on and "*countP."
- *
- * Note:
- * As a side-effect, *countP is modified. It should be 0 initially.
- *
- * Exceptions:
- * BadState if called with pointer to value 0 and false.
- * BadArg if "countP" is invalid pointer.
- * BadArg if on is invalid.
- */
-bool
-BypassEnable(int *enableCountInOutP, bool on)
-{
- AssertArg(PointerIsValid(enableCountInOutP));
- AssertArg(BoolIsValid(on));
-
- if (on)
- {
- *enableCountInOutP += 1;
- return (bool) (*enableCountInOutP >= 2);
- }
-
- Assert(*enableCountInOutP >= 1);
-
- *enableCountInOutP -= 1;
-
- return (bool) (*enableCountInOutP >= 1);
-}