mirror of
https://github.com/postgres/postgres.git
synced 2025-07-18 17:42:25 +03:00
Pad the ps_status display with nulls, not blanks, on Darwin.
A long time ago, this didn't work nicely, but it seems to work on all recent versions of OS X. The blank-pad method is less desirable since it results in lots of extra space in ps' output. Per Alexey Klyukin.
This commit is contained in:
@ -5,7 +5,7 @@
|
|||||||
* to contain some useful information. Mechanism differs wildly across
|
* to contain some useful information. Mechanism differs wildly across
|
||||||
* platforms.
|
* platforms.
|
||||||
*
|
*
|
||||||
* $PostgreSQL: pgsql/src/backend/utils/misc/ps_status.c,v 1.42 2010/07/06 19:18:59 momjian Exp $
|
* $PostgreSQL: pgsql/src/backend/utils/misc/ps_status.c,v 1.42.2.1 2010/09/04 17:46:03 tgl Exp $
|
||||||
*
|
*
|
||||||
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
|
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
|
||||||
* various details abducted from various places
|
* various details abducted from various places
|
||||||
@ -76,7 +76,7 @@ bool update_process_title = true;
|
|||||||
|
|
||||||
|
|
||||||
/* Different systems want the buffer padded differently */
|
/* Different systems want the buffer padded differently */
|
||||||
#if defined(_AIX) || defined(__linux__) || defined(__svr4__)
|
#if defined(_AIX) || defined(__linux__) || defined(__svr4__) || defined(__darwin__)
|
||||||
#define PS_PADDING '\0'
|
#define PS_PADDING '\0'
|
||||||
#else
|
#else
|
||||||
#define PS_PADDING ' '
|
#define PS_PADDING ' '
|
||||||
|
Reference in New Issue
Block a user