mirror of
https://github.com/postgres/postgres.git
synced 2025-11-12 05:01:15 +03:00
pgindent run over code.
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/init/Attic/enbl.c,v 1.6 1999/02/13 23:19:59 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/init/Attic/enbl.c,v 1.7 1999/05/25 16:12:33 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -15,7 +15,7 @@
|
||||
#include "utils/module.h" /* where the declarations go */
|
||||
|
||||
/*
|
||||
* BypassEnable
|
||||
* BypassEnable
|
||||
* False iff enable/disable processing is required given on and "*countP."
|
||||
*
|
||||
* Note:
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
/*-------------------------------------------------------------------------
|
||||
*
|
||||
* findbe.c
|
||||
* findbe.c
|
||||
*
|
||||
* Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/init/Attic/findbe.c,v 1.13 1999/02/13 23:20:00 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/init/Attic/findbe.c,v 1.14 1999/05/25 16:12:33 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.29 1999/05/22 17:47:46 tgl Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.30 1999/05/25 16:12:34 momjian Exp $
|
||||
*
|
||||
* NOTES
|
||||
* Globals used all over the place should be declared here and not
|
||||
@@ -46,6 +46,7 @@ struct Port *MyProcPort;
|
||||
long MyCancelKey;
|
||||
|
||||
char *DataDir = NULL;
|
||||
|
||||
/*
|
||||
* The PGDATA directory user says to use, or defaults to via environment
|
||||
* variable. NULL if no option given and no environment variable set
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/init/miscinit.c,v 1.28 1999/05/22 17:47:46 tgl Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/init/miscinit.c,v 1.29 1999/05/25 16:12:35 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -40,7 +40,7 @@
|
||||
#include "storage/ipc.h" /* for proc_exit */
|
||||
|
||||
/*
|
||||
* EnableAbortEnvVarName
|
||||
* EnableAbortEnvVarName
|
||||
* Enables system abort iff set to a non-empty string in environment.
|
||||
*/
|
||||
#define EnableAbortEnvVarName "POSTGRESABORT"
|
||||
@@ -69,7 +69,7 @@ unsigned char RecodeBackTable[128];
|
||||
*/
|
||||
|
||||
/*
|
||||
* ExitPostgres
|
||||
* ExitPostgres
|
||||
* Exit POSTGRES with a status code.
|
||||
*
|
||||
* Note:
|
||||
@@ -89,7 +89,7 @@ ExitPostgres(ExitStatus status)
|
||||
}
|
||||
|
||||
/*
|
||||
* AbortPostgres
|
||||
* AbortPostgres
|
||||
* Abort POSTGRES dumping core.
|
||||
*
|
||||
* Note:
|
||||
@@ -138,6 +138,7 @@ StatusPostmasterExit(int status)
|
||||
/* someday, do some real cleanup and then call the LISP exit */
|
||||
proc_exit(status);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@@ -149,7 +150,7 @@ static ProcessingMode Mode = NoProcessing;
|
||||
|
||||
#ifdef NOT_USED
|
||||
/*
|
||||
* IsNoProcessingMode
|
||||
* IsNoProcessingMode
|
||||
* True iff processing mode is NoProcessing.
|
||||
*/
|
||||
bool
|
||||
@@ -157,10 +158,11 @@ IsNoProcessingMode()
|
||||
{
|
||||
return (bool) (Mode == NoProcessing);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
/*
|
||||
* IsBootstrapProcessingMode
|
||||
* IsBootstrapProcessingMode
|
||||
* True iff processing mode is BootstrapProcessing.
|
||||
*/
|
||||
bool
|
||||
@@ -170,7 +172,7 @@ IsBootstrapProcessingMode()
|
||||
}
|
||||
|
||||
/*
|
||||
* IsInitProcessingMode
|
||||
* IsInitProcessingMode
|
||||
* True iff processing mode is InitProcessing.
|
||||
*/
|
||||
bool
|
||||
@@ -180,7 +182,7 @@ IsInitProcessingMode()
|
||||
}
|
||||
|
||||
/*
|
||||
* IsNormalProcessingMode
|
||||
* IsNormalProcessingMode
|
||||
* True iff processing mode is NormalProcessing.
|
||||
*/
|
||||
bool
|
||||
@@ -190,7 +192,7 @@ IsNormalProcessingMode()
|
||||
}
|
||||
|
||||
/*
|
||||
* SetProcessingMode
|
||||
* SetProcessingMode
|
||||
* Sets mode of processing as specified.
|
||||
*
|
||||
* Exceptions:
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.39 1999/02/22 19:55:43 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.40 1999/05/25 16:12:36 momjian Exp $
|
||||
*
|
||||
* NOTES
|
||||
* InitPostgres() is the function called from PostgresMain
|
||||
@@ -143,7 +143,7 @@ InitMyDatabaseInfo(char *name)
|
||||
|
||||
|
||||
/*
|
||||
* DoChdirAndInitDatabaseNameAndPath
|
||||
* DoChdirAndInitDatabaseNameAndPath
|
||||
* Set current directory to the database directory for the database
|
||||
* named <name>.
|
||||
* Also set global variables DatabasePath and DatabaseName to those
|
||||
@@ -415,7 +415,7 @@ InitStdio()
|
||||
}
|
||||
|
||||
/* --------------------------------
|
||||
* InitPostgres
|
||||
* InitPostgres
|
||||
* Initialize POSTGRES.
|
||||
*
|
||||
* Note:
|
||||
|
||||
Reference in New Issue
Block a user