File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.32 1997/04/23 18:02:43 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.33 1997/04/24 03:39:09 scrappy Exp $
11
11
*
12
12
* NOTES
13
13
* this is the "main" module of the postgres backend and
@@ -1270,7 +1270,7 @@ PostgresMain(int argc, char *argv[])
1270
1270
*/
1271
1271
if (IsUnderPostmaster == false) {
1272
1272
puts ("\nPOSTGRES backend interactive interface" );
1273
- puts ("$Revision: 1.32 $ $Date: 1997/04/23 18:02:43 $" );
1273
+ puts ("$Revision: 1.33 $ $Date: 1997/04/24 03:39:09 $" );
1274
1274
}
1275
1275
1276
1276
/* ----------------
@@ -1467,7 +1467,7 @@ PostgresMain(int argc, char *argv[])
1467
1467
return 1 ;
1468
1468
}
1469
1469
1470
- #ifdef HAVE_GETRUSAGE
1470
+ #ifndef HAVE_GETRUSAGE
1471
1471
#include "rusagestub.h"
1472
1472
#else /* HAVE_GETRUSAGE */
1473
1473
#include <sys/resource.h>
@@ -1535,7 +1535,7 @@ ShowUsage(void)
1535
1535
(long int ) user .tv_usec ,
1536
1536
(long int ) sys .tv_sec ,
1537
1537
(long int ) sys .tv_usec );
1538
- #ifndef HAVE_GETRUSAGE
1538
+ #ifdef HAVE_GETRUSAGE
1539
1539
fprintf (StatFp ,
1540
1540
"!\t%ld/%ld [%ld/%ld] filesystem blocks in/out\n" ,
1541
1541
r .ru_inblock - Save_r .ru_inblock ,
You can’t perform that action at this time.
0 commit comments