aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1998-07-13 16:39:07 +0000
committerBruce Momjian <bruce@momjian.us>1998-07-13 16:39:07 +0000
commit976b3862ce8f4f6c9c7bdc7e21010ffe39dba504 (patch)
treebc11371c1b281ee20f4ee7d491b4a46a6dbf951b /src
parent5aea4062d68ae49bca3131a285793b932930cc43 (diff)
downloadpostgresql-976b3862ce8f4f6c9c7bdc7e21010ffe39dba504.tar.gz
postgresql-976b3862ce8f4f6c9c7bdc7e21010ffe39dba504.zip
Currently, building on any platform that hasn't got getrusage()
requires manual editing of src/backend/port/getrusage.c, because its substitute version of getrusage is #if'd out. There is no good reason for that, because configure won't even include the file into the Makefile unless the platform hasn't got getrusage. Furthermore, we only have one working substitute version of getrusage --- the alleged HPUX syscall-based code doesn't work. (It causes a coredump because the syscall returns a struct rusage that's much larger than the stub struct defined in src/include/rusagestub.h.) The times()-based emulation works fine on HPUX, however. I propose, therefore, that getrusage.c should just unconditionally compile the times-based version, and rely on configure to include the file only if needed. This will be one less manual configuration step on all platforms that need this code. Patch attached. Tom Lane.
Diffstat (limited to 'src')
-rw-r--r--src/backend/port/getrusage.c33
1 files changed, 13 insertions, 20 deletions
diff --git a/src/backend/port/getrusage.c b/src/backend/port/getrusage.c
index f1fa5d0bd7e..3e533bdb814 100644
--- a/src/backend/port/getrusage.c
+++ b/src/backend/port/getrusage.c
@@ -1,16 +1,20 @@
-/* $Id: getrusage.c,v 1.8 1998/06/19 02:55:04 momjian Exp $ */
-
-#include <math.h> /* for pow() prototype */
+/* $Id: getrusage.c,v 1.9 1998/07/13 16:39:07 momjian Exp $ */
#include <errno.h>
#include "rusagestub.h"
-#if 0 /* this is from univel port ... how does
- * compiler define? */
- /* same for solaris_i386 port ... how does compiler define? */
- /* same for sco port ... how does compiler define? */
- /* same for solaris_sparc port ... how does compiler define? */
- /* same for svr4 port ... how does compiler define? */
+/* This code works on:
+ * univel
+ * solaris_i386
+ * sco
+ * solaris_sparc
+ * svr4
+ * hpux 9.*
+ * which currently is all the supported platforms that don't have a
+ * native version of getrusage(). So, if configure decides to compile
+ * this file at all, we just use this version unconditionally.
+ */
+
int
getrusage(int who, struct rusage * rusage)
{
@@ -51,14 +55,3 @@ getrusage(int who, struct rusage * rusage)
rusage->ru_stime.tv_usec = TICK_TO_USEC(u, tick_rate);
return (0);
}
-
-#endif
-
-#if 0 /* this is for hpux port ... how does
- * compiler define? */
-getrusage(int who, struct rusage * ru)
-{
- return (syscall(SYS_GETRUSAGE, who, ru));
-}
-
-#endif