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
d3f9d6ad
Commit
d3f9d6ad
authored
Nov 24, 1996
by
Bryan Henderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move include of signal.h inside pqsignal.h so it's always where it's needed.
parent
7e499bd1
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
9 deletions
+6
-9
src/backend/libpq/pqcomm.c
src/backend/libpq/pqcomm.c
+1
-2
src/backend/postmaster/postmaster.c
src/backend/postmaster/postmaster.c
+1
-2
src/backend/storage/lmgr/proc.c
src/backend/storage/lmgr/proc.c
+2
-3
src/include/libpq/pqsignal.h
src/include/libpq/pqsignal.h
+2
-2
No files found.
src/backend/libpq/pqcomm.c
View file @
d3f9d6ad
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/pqcomm.c,v 1.
8 1996/11/15 09:54:28 scrappy
Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/pqcomm.c,v 1.
9 1996/11/24 04:05:20 bryanh
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -38,7 +38,6 @@
...
@@ -38,7 +38,6 @@
#include <string.h>
#include <string.h>
#include <errno.h>
#include <errno.h>
#include <fcntl.h>
#include <fcntl.h>
#include <signal.h>
#ifndef WIN32
#ifndef WIN32
#include <unistd.h>
/* for ttyname() */
#include <unistd.h>
/* for ttyname() */
#include <sys/types.h>
#include <sys/types.h>
...
...
src/backend/postmaster/postmaster.c
View file @
d3f9d6ad
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.2
5 1996/11/14 10:24:01
bryanh Exp $
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.2
6 1996/11/24 04:07:00
bryanh Exp $
*
*
* NOTES
* NOTES
*
*
...
@@ -40,7 +40,6 @@
...
@@ -40,7 +40,6 @@
#include "postgres.h"
#include "postgres.h"
#include <signal.h>
/* for other stuff */
#include "libpq/pqsignal.h"
/* substitute for <signal.h> */
#include "libpq/pqsignal.h"
/* substitute for <signal.h> */
#include <string.h>
#include <string.h>
#include <stdlib.h>
#include <stdlib.h>
...
...
src/backend/storage/lmgr/proc.c
View file @
d3f9d6ad
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.
9 1996/11/08 05:58:59 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.
10 1996/11/24 04:07:05 bryanh
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -46,14 +46,13 @@
...
@@ -46,14 +46,13 @@
* This is so that we can support more backends. (system-wide semaphore
* This is so that we can support more backends. (system-wide semaphore
* sets run out pretty fast.) -ay 4/95
* sets run out pretty fast.) -ay 4/95
*
*
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.
9 1996/11/08 05:58:59 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.
10 1996/11/24 04:07:05 bryanh
Exp $
*/
*/
#include <sys/time.h>
#include <sys/time.h>
#ifndef WIN32
#ifndef WIN32
#include <unistd.h>
#include <unistd.h>
#endif
/* WIN32 */
#endif
/* WIN32 */
#include <string.h>
#include <string.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <sys/sem.h>
...
...
src/include/libpq/pqsignal.h
View file @
d3f9d6ad
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: pqsignal.h,v 1.
3 1996/11/06 10:30:08 scrappy
Exp $
* $Id: pqsignal.h,v 1.
4 1996/11/24 04:07:17 bryanh
Exp $
*
*
* NOTES
* NOTES
* This shouldn't be in libpq, but the monitor and some other
* This shouldn't be in libpq, but the monitor and some other
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
#ifndef PQSIGNAL_H
#ifndef PQSIGNAL_H
#define PQSIGNAL_H
#define PQSIGNAL_H
#include <signal.h>
typedef
void
(
*
pqsigfunc
)(
int
);
typedef
void
(
*
pqsigfunc
)(
int
);
...
...
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