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
85b309ee
Commit
85b309ee
authored
Jan 09, 2000
by
Tatsuo Ishii
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add SetPidFile() and friends.
parent
ac0d141e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
src/include/miscadmin.h
src/include/miscadmin.h
+13
-1
No files found.
src/include/miscadmin.h
View file @
85b309ee
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: miscadmin.h,v 1.4
5 1999/10/23 03:13:30 tgl
Exp $
* $Id: miscadmin.h,v 1.4
6 2000/01/09 12:19:27 ishii
Exp $
*
*
* NOTES
* NOTES
* some of the information in this file will be moved to
* some of the information in this file will be moved to
...
@@ -195,4 +195,16 @@ extern bool IsNormalProcessingMode(void);
...
@@ -195,4 +195,16 @@ extern bool IsNormalProcessingMode(void);
extern
void
SetProcessingMode
(
ProcessingMode
mode
);
extern
void
SetProcessingMode
(
ProcessingMode
mode
);
extern
ProcessingMode
GetProcessingMode
(
void
);
extern
ProcessingMode
GetProcessingMode
(
void
);
/*
* "postmaster.pid" is a file containing postmaster's pid, being
* created uder $PGDATA upon postmaster's starting up. When postmaster
* shuts down, it will be unlinked.
*/
#define PIDFNAME "postmaster.pid"
extern
void
SetPidFname
(
char
*
datadir
);
extern
char
*
GetPidFname
(
void
);
extern
void
UnlinkPidFile
(
void
);
extern
int
SetPidFile
(
pid_t
pid
);
#endif
/* MISCADMIN_H */
#endif
/* MISCADMIN_H */
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