1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +03:00

Make functions static or ifdef NOT_USED. Prevent pg_version creation.

This commit is contained in:
Bruce Momjian
1998-10-08 18:30:52 +00:00
parent 0a1c2805b3
commit 173c555948
52 changed files with 173 additions and 164 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/init/miscinit.c,v 1.23 1998/10/05 02:48:49 thomas Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/init/miscinit.c,v 1.24 1998/10/08 18:30:16 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -114,7 +114,6 @@ AbortPostgres()
proc_exit(FatalExitStatus);
}
#endif
/* ----------------
* StatusBackendExit
@ -138,6 +137,8 @@ StatusPostmasterExit(int status)
/* someday, do some real cleanup and then call the LISP exit */
proc_exit(status);
}
#endif
/* ----------------------------------------------------------------
* processing mode support stuff (used to be in pmod.c)
@ -145,6 +146,7 @@ StatusPostmasterExit(int status)
*/
static ProcessingMode Mode = NoProcessing;
#ifdef NOT_USED
/*
* IsNoProcessingMode --
* True iff processing mode is NoProcessing.
@ -154,6 +156,7 @@ IsNoProcessingMode()
{
return (bool) (Mode == NoProcessing);
}
#endif
/*
* IsBootstrapProcessingMode --