From: Peter Eisentraut Date: Tue, 23 Jan 2001 20:33:29 +0000 (+0000) Subject: Remove useless leftover global variable Ps_status_buffer. X-Git-Tag: REL7_1~704 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3de8407ea7d3c6d3343242ed72cefd4a51373861;p=thirdparty%2Fpostgresql.git Remove useless leftover global variable Ps_status_buffer. --- diff --git a/src/backend/utils/init/globals.c b/src/backend/utils/init/globals.c index ce87636ba95..f90c7f29c29 100644 --- a/src/backend/utils/init/globals.c +++ b/src/backend/utils/init/globals.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.51 2001/01/19 22:08:47 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.52 2001/01/23 20:33:29 petere Exp $ * * NOTES * Globals used all over the place should be declared here and not @@ -94,14 +94,6 @@ char *IndexedCatalogNames[] = { }; -/* - * ps status buffer - */ -#ifndef linux -char Ps_status_buffer[1024]; - -#endif - /* ---------------- * we just do a linear search now so there's no requirement that the list * be ordered. The list is so small it shouldn't make much difference.