Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
94cc3abe
Commit
94cc3abe
authored
Jun 18, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanups.
parent
c6f18c26
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
src/backend/postmaster/postmaster.c
src/backend/postmaster/postmaster.c
+4
-5
src/backend/storage/ipc/ipc.c
src/backend/storage/ipc/ipc.c
+3
-1
No files found.
src/backend/postmaster/postmaster.c
View file @
94cc3abe
...
...
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.8
8 1998/06/15 19:29:00
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.8
9 1998/06/18 03:43:59
momjian Exp $
*
* NOTES
*
...
...
@@ -955,11 +955,10 @@ CleanupProc(int pid,
}
/*
*
-------------------------
If a backend dies in an ugly way (i.e.
* If a backend dies in an ugly way (i.e.
* exit status not 0) then we must signal all other backends to
* quickdie. If exit status is zero we assume everything is hunky
* dory and simply remove the backend from the active backend list.
* -------------------------
*/
if
(
!
exitstatus
)
{
...
...
@@ -1021,7 +1020,7 @@ CleanupProc(int pid,
}
/*
*
-------------
Quasi_exit means run all of the on_exitpg routines
* Quasi_exit means run all of the on_exitpg routines
* but don't acutally call exit(). The on_exit list of routines to do
* is also truncated.
*
...
...
@@ -1030,7 +1029,7 @@ CleanupProc(int pid,
* requested and received a connection and I have forked off another
* backend. This prevents me from reinitializing shared stuff more
* than once for the set of backends that caused the failure and were
* killed off.
----------------
* killed off.
*/
if
(
ActiveBackends
==
TRUE
&&
Reinit
)
{
...
...
src/backend/storage/ipc/ipc.c
View file @
94cc3abe
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.2
2 1998/06/15 19:29:13
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.2
3 1998/06/18 03:44:00
momjian Exp $
*
* NOTES
*
...
...
@@ -45,12 +45,14 @@
#include <sys/ipc.h>
#endif
#ifdef NOT_USED
#if defined(bsd44)
int
UsePrivateMemory
=
1
;
#else
int
UsePrivateMemory
=
0
;
#endif
#endif
static
void
IpcMemoryDetach
(
int
status
,
char
*
shmaddr
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment