diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-05-23 22:50:55 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-05-23 22:50:55 +0000 |
commit | 962c25802757aa60f5117575cd5eb618c0afefa5 (patch) | |
tree | 603e867ecd6d11c4ac03c6b12b469dd5ad96054e /src | |
parent | d264fb415770fe805504f860e6ffc39d613e28ae (diff) | |
download | postgresql-962c25802757aa60f5117575cd5eb618c0afefa5.tar.gz postgresql-962c25802757aa60f5117575cd5eb618c0afefa5.zip |
Comment out no-op ps updates for setproctitle(), until we figure out
what to do.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/utils/ps_status.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/utils/ps_status.h b/src/include/utils/ps_status.h index b786c5415ad..1c31e0257eb 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) |