From: Bruce Momjian Date: Tue, 23 May 2000 22:50:55 +0000 (+0000) Subject: Comment out no-op ps updates for setproctitle(), until we figure out X-Git-Tag: REL7_0_2~45 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=962c25802757aa60f5117575cd5eb618c0afefa5;p=postgresql Comment out no-op ps updates for setproctitle(), until we figure out what to do. --- diff --git a/src/include/utils/ps_status.h b/src/include/utils/ps_status.h index b786c5415a..1c31e0257e 100644 --- a/src/include/utils/ps_status.h +++ b/src/include/utils/ps_status.h @@ -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)