Comment out no-op ps updates for setproctitle(), until we figure out

what to do.
This commit is contained in:
Bruce Momjian 2000-05-23 22:50:55 +00:00
parent d264fb4157
commit 962c258027
1 changed files with 2 additions and 2 deletions

View File

@ -24,10 +24,10 @@ extern char Ps_status_buffer[];
} while (0)
#define PS_CLEAR_STATUS() \
do { Ps_status_buffer[0] = '\0'; } while (0)
do { /*Ps_status_buffer[0] = '\0';*/ } while (0)
#define PS_SET_STATUS(status) \
do { strcpy(Ps_status_buffer, (status)); } while (0)
do { /*strcpy(Ps_status_buffer, (status));*/ } while (0)
#define PS_STATUS (Ps_status_buffer)