diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-05-13 22:45:04 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-05-13 22:45:04 +0000 |
commit | f69ecb4f8cbf0f1d1638f9fb01d8845a5c84a3c0 (patch) | |
tree | 32a0c064a21d0e6837fb19132132ccc4f14e3dc2 /src/include/miscadmin.h | |
parent | 261eda55d3473f4da3c60e09b4f9823688121593 (diff) |
Reorganize backend code to more cleanly manage executable names and
backend startup.
Diffstat (limited to 'src/include/miscadmin.h')
-rw-r--r-- | src/include/miscadmin.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index fc312b3d74b..09f2cf2aa24 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -13,7 +13,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/miscadmin.h,v 1.157 2004/05/11 21:57:15 momjian Exp $ + * $PostgreSQL: pgsql/src/include/miscadmin.h,v 1.158 2004/05/13 22:45:04 momjian Exp $ * * NOTES * some of the information in this file should be moved to @@ -124,6 +124,8 @@ extern void SubPostmasterMain(int argc, char* argv[]); #endif extern void ClosePostmasterPorts(bool pgstat_too); +#define PG_VERSIONSTR "postgres (PostgreSQL) " PG_VERSION "\n" + /* * from utils/init/globals.c */ @@ -140,7 +142,7 @@ extern struct Port *MyProcPort; extern long MyCancelKey; extern char OutputFileName[]; -extern char pg_pathname[]; +extern char my_exec_path[]; /* * done in storage/backendid.h for now. |