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
bef3c89a
Commit
bef3c89a
authored
Oct 13, 1996
by
Bryan Henderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix prototypes so postmaster.c will compile.
parent
36984885
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
src/backend/postmaster/postmaster.c
src/backend/postmaster/postmaster.c
+4
-3
No files found.
src/backend/postmaster/postmaster.c
View file @
bef3c89a
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.1
2 1996/10/12 07:48:49
bryanh Exp $
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.1
3 1996/10/13 04:01:05
bryanh Exp $
*
*
* NOTES
* NOTES
*
*
...
@@ -152,7 +152,8 @@ static int MultiplexedBackendPort;
...
@@ -152,7 +152,8 @@ static int MultiplexedBackendPort;
* postmaster.c - function prototypes
* postmaster.c - function prototypes
*/
*/
static
void
pmdaemonize
(
void
);
static
void
pmdaemonize
(
void
);
static
int
ConnStartup
(
Port
*
port
);
static
void
ConnStartup
(
Port
*
port
,
int
*
status
,
char
*
errormsg
,
const
int
errormsg_len
);
static
int
ConnCreate
(
int
serverFd
,
int
*
newFdP
);
static
int
ConnCreate
(
int
serverFd
,
int
*
newFdP
);
static
void
reset_shared
(
short
port
);
static
void
reset_shared
(
short
port
);
static
void
pmdie
(
SIGNAL_ARGS
);
static
void
pmdie
(
SIGNAL_ARGS
);
...
@@ -163,9 +164,9 @@ static int DoExec(StartupInfo *packet, int portFd);
...
@@ -163,9 +164,9 @@ static int DoExec(StartupInfo *packet, int portFd);
static
void
ExitPostmaster
(
int
status
);
static
void
ExitPostmaster
(
int
status
);
static
void
usage
(
const
char
*
);
static
void
usage
(
const
char
*
);
static
void
checkDataDir
(
void
);
static
void
checkDataDir
(
void
);
int
ServerLoop
(
void
);
int
ServerLoop
(
void
);
int
BackendStartup
(
StartupInfo
*
packet
,
Port
*
port
,
int
*
pidPtr
);
int
BackendStartup
(
StartupInfo
*
packet
,
Port
*
port
,
int
*
pidPtr
);
static
void
send_error_reply
(
Port
*
port
,
const
char
*
errormsg
);
extern
char
*
optarg
;
extern
char
*
optarg
;
extern
int
optind
,
opterr
;
extern
int
optind
,
opterr
;
...
...
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