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
8d0e658d
Commit
8d0e658d
authored
Aug 25, 1997
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Small cleanup.
parent
c4cb6175
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
src/backend/postmaster/postmaster.c
src/backend/postmaster/postmaster.c
+5
-5
src/include/c.h
src/include/c.h
+2
-2
No files found.
src/backend/postmaster/postmaster.c
View file @
8d0e658d
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.5
2 1997/08/19 21:32:27
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.5
3 1997/08/25 04:15:31
momjian Exp $
*
*
* NOTES
* NOTES
*
*
...
@@ -887,8 +887,8 @@ CleanupProc(int pid,
...
@@ -887,8 +887,8 @@ CleanupProc(int pid,
* SIGUSR1 is the special signal that sez exit without exitpg
* SIGUSR1 is the special signal that sez exit without exitpg
* and let the user know what's going on. ProcSemaphoreKill()
* and let the user know what's going on. ProcSemaphoreKill()
* cleans up the backends semaphore. If SendStop is set (-s on
* cleans up the backends semaphore. If SendStop is set (-s on
* the
command line), then we send a SIGSTOP so that we can
*
command line), then we send a SIGSTOP so that we can
* collect
core dumps from all backends by hand.
*
core dumps from all backends by hand.
* -----------------
* -----------------
*/
*/
sig
=
(
SendStop
)
?
SIGSTOP
:
SIGUSR1
;
sig
=
(
SendStop
)
?
SIGSTOP
:
SIGUSR1
;
...
...
src/include/c.h
View file @
8d0e658d
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: c.h,v 1.1
5 1997/08/24 23:07:56
momjian Exp $
* $Id: c.h,v 1.1
6 1997/08/25 04:15:40
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -686,7 +686,7 @@ typedef struct Exception {
...
@@ -686,7 +686,7 @@ typedef struct Exception {
* Does string copy, and forces terminating NULL
* Does string copy, and forces terminating NULL
*/
*/
/* we do this so if the macro is used in an if action, it will work */
/* we do this so if the macro is used in an if action, it will work */
#define strNcpy(dst,src,len) (strncpy((dst),(src),(len)),*((dst)+(len))='\0'
,dst
)
#define strNcpy(dst,src,len) (strncpy((dst),(src),(len)),*((dst)+(len))='\0')
/* ----------------------------------------------------------------
/* ----------------------------------------------------------------
* Section 9: externs
* Section 9: externs
...
...
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