diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-12-18 18:45:05 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-12-18 18:45:05 +0000 |
commit | 1f159e562b2a31234edba781218ce5278ea2cfd8 (patch) | |
tree | 347b6c792b54d1d2e16c156bc0f5b6b09a4bacc8 /src/backend/tcop/postgres.c | |
parent | 5491233f5245c464be2286ad894448b21ef757db (diff) | |
download | postgresql-1f159e562b2a31234edba781218ce5278ea2cfd8.tar.gz postgresql-1f159e562b2a31234edba781218ce5278ea2cfd8.zip |
>> Here is a patch for the beos port (All regression tests are OK).
>> xlog.c : special case for beos to avoid 'link' which does not work yet
>> beos/sem.c : implementation of new sem_ctl call (GETPID) and a new
>sem_op
>> flag (IPCNOWAIT)
>> dynloader/beos.c : add a verification of symbol validity (seem that
the
>> loader sometime return OK with an invalid symbol)
>> postmaster.c : add beos forking support for the new checkpoint
process
>> postgres.c : remove beos special case for getrusage
>> beos.h : Correction of a bas definition of AF_UNIX, misc defnitions
>>
>>
>> thanks
>>
>>
>> cyril
Cyril VELTER
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 02c1459052d..2946c9a5ef4 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.196 2000/12/18 17:33:41 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.197 2000/12/18 18:45:05 momjian Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -1649,7 +1649,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[], const cha if (!IsUnderPostmaster) { puts("\nPOSTGRES backend interactive interface "); - puts("$Revision: 1.196 $ $Date: 2000/12/18 17:33:41 $\n"); + puts("$Revision: 1.197 $ $Date: 2000/12/18 18:45:05 $\n"); } /* @@ -1950,7 +1950,7 @@ ShowUsage(void) (long int) sys.tv_sec, (long int) sys.tv_usec); /* BeOS has rusage but only has some fields, and not these... */ -#if defined(HAVE_GETRUSAGE) && !defined(__BEOS__) +#if defined(HAVE_GETRUSAGE) fprintf(StatFp, "!\t%ld/%ld [%ld/%ld] filesystem blocks in/out\n", r.ru_inblock - Save_r.ru_inblock, |