1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-27 00:12:01 +03:00

Remove useless leftover global variable Ps_status_buffer.

This commit is contained in:
Peter Eisentraut
2001-01-23 20:33:29 +00:00
parent 6b3c8e3167
commit 3de8407ea7

View File

@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * 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 * NOTES
* Globals used all over the place should be declared here and not * 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 * 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. * be ordered. The list is so small it shouldn't make much difference.