Skip to content

Commit 94cc3ab

Browse files
committed
Cleanups.
1 parent c6f18c2 commit 94cc3ab

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

src/backend/postmaster/postmaster.c

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.88 1998/06/15 19:29:00 momjian Exp $
13+
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.89 1998/06/18 03:43:59 momjian Exp $
1414
*
1515
* NOTES
1616
*
@@ -955,11 +955,10 @@ CleanupProc(int pid,
955955
}
956956

957957
/*
958-
* ------------------------- If a backend dies in an ugly way (i.e.
958+
* If a backend dies in an ugly way (i.e.
959959
* exit status not 0) then we must signal all other backends to
960960
* quickdie. If exit status is zero we assume everything is hunky
961961
* dory and simply remove the backend from the active backend list.
962-
* -------------------------
963962
*/
964963
if (!exitstatus)
965964
{
@@ -1021,7 +1020,7 @@ CleanupProc(int pid,
10211020
}
10221021

10231022
/*
1024-
* ------------- Quasi_exit means run all of the on_exitpg routines
1023+
* Quasi_exit means run all of the on_exitpg routines
10251024
* but don't acutally call exit(). The on_exit list of routines to do
10261025
* is also truncated.
10271026
*
@@ -1030,7 +1029,7 @@ CleanupProc(int pid,
10301029
* requested and received a connection and I have forked off another
10311030
* backend. This prevents me from reinitializing shared stuff more
10321031
* than once for the set of backends that caused the failure and were
1033-
* killed off. ----------------
1032+
* killed off.
10341033
*/
10351034
if (ActiveBackends == TRUE && Reinit)
10361035
{

src/backend/storage/ipc/ipc.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.22 1998/06/15 19:29:13 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.23 1998/06/18 03:44:00 momjian Exp $
1111
*
1212
* NOTES
1313
*
@@ -45,12 +45,14 @@
4545
#include <sys/ipc.h>
4646
#endif
4747

48+
#ifdef NOT_USED
4849
#if defined(bsd44)
4950
int UsePrivateMemory = 1;
5051

5152
#else
5253
int UsePrivateMemory = 0;
5354

55+
#endif
5456
#endif
5557

5658
static void IpcMemoryDetach(int status, char *shmaddr);

0 commit comments

Comments
 (0)