diff options
author | Tom Lane | 2012-05-02 04:29:17 +0000 |
---|---|---|
committer | Tom Lane | 2012-05-02 04:29:17 +0000 |
commit | 50c2d6a1a63f04fd8c4553fc696c2c9e235b1a25 (patch) | |
tree | 99e9e0fccf30ea9c4b779420297b0bcc0ff9c2b2 | |
parent | 9b7a84f2a45322b21b86eb180a869d1ed2937b85 (diff) |
Kill some remaining references to SVR4 and univel.
Both terms still appear in a few places, but I thought it best to leave
those alone in context.
-rw-r--r-- | src/backend/utils/misc/ps_status.c | 4 | ||||
-rw-r--r-- | src/port/getrusage.c | 4 |
2 files changed, 3 insertions, 5 deletions
diff --git a/src/backend/utils/misc/ps_status.c b/src/backend/utils/misc/ps_status.c index ac718c6a770..f1497c63f42 100644 --- a/src/backend/utils/misc/ps_status.c +++ b/src/backend/utils/misc/ps_status.c @@ -66,7 +66,7 @@ bool update_process_title = true; #define PS_USE_PS_STRINGS #elif (defined(BSD) || defined(__bsdi__) || defined(__hurd__)) && !defined(__darwin__) #define PS_USE_CHANGE_ARGV -#elif defined(__linux__) || defined(_AIX) || defined(__sgi) || (defined(sun) && !defined(BSD)) || defined(ultrix) || defined(__ksr__) || defined(__osf__) || defined(__svr4__) || defined(__svr5__) || defined(__darwin__) +#elif defined(__linux__) || defined(_AIX) || defined(__sgi) || (defined(sun) && !defined(BSD)) || defined(ultrix) || defined(__ksr__) || defined(__osf__) || defined(__svr5__) || defined(__darwin__) #define PS_USE_CLOBBER_ARGV #elif defined(WIN32) #define PS_USE_WIN32 @@ -76,7 +76,7 @@ bool update_process_title = true; /* Different systems want the buffer padded differently */ -#if defined(_AIX) || defined(__linux__) || defined(__svr4__) || defined(__darwin__) +#if defined(_AIX) || defined(__linux__) || defined(__darwin__) #define PS_PADDING '\0' #else #define PS_PADDING ' ' diff --git a/src/port/getrusage.c b/src/port/getrusage.c index 0d272e83d01..239b98d029d 100644 --- a/src/port/getrusage.c +++ b/src/port/getrusage.c @@ -18,11 +18,9 @@ #include "rusagestub.h" /* This code works on: - * univel - * solaris_i386 * sco + * solaris_i386 * solaris_sparc - * svr4 * hpux 9.* * win32 * which currently is all the supported platforms that don't have a |