Commit 962c2580 authored by Bruce Momjian's avatar Bruce Momjian

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

what to do.
parent d264fb41
...@@ -24,10 +24,10 @@ extern char Ps_status_buffer[]; ...@@ -24,10 +24,10 @@ extern char Ps_status_buffer[];
} while (0) } while (0)
#define PS_CLEAR_STATUS() \ #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) \ #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) #define PS_STATUS (Ps_status_buffer)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment