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
7d7eee8b
Commit
7d7eee8b
authored
Jan 18, 2014
by
Andrew Dunstan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Export a few more symbols required for test_shm_mq module.
Patch from Amit Kapila.
parent
ad6bf029
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
src/include/miscadmin.h
src/include/miscadmin.h
+1
-1
src/include/postmaster/bgworker.h
src/include/postmaster/bgworker.h
+1
-1
src/include/storage/shm_mq.h
src/include/storage/shm_mq.h
+1
-1
No files found.
src/include/miscadmin.h
View file @
7d7eee8b
...
...
@@ -80,7 +80,7 @@ extern volatile bool ProcDiePending;
extern
volatile
bool
ClientConnectionLost
;
/* these are marked volatile because they are examined by signal handlers: */
extern
volatile
bool
ImmediateInterruptOK
;
extern
PGDLLIMPORT
volatile
bool
ImmediateInterruptOK
;
extern
PGDLLIMPORT
volatile
uint32
InterruptHoldoffCount
;
extern
PGDLLIMPORT
volatile
uint32
CritSectionCount
;
...
...
src/include/postmaster/bgworker.h
View file @
7d7eee8b
...
...
@@ -116,7 +116,7 @@ extern BgwHandleStatus WaitForBackgroundWorkerStartup(BackgroundWorkerHandle *
extern
void
TerminateBackgroundWorker
(
BackgroundWorkerHandle
*
handle
);
/* This is valid in a running worker */
extern
BackgroundWorker
*
MyBgworkerEntry
;
extern
PGDLLIMPORT
BackgroundWorker
*
MyBgworkerEntry
;
/*
* Connect to the specified database, as the specified user. Only a worker
...
...
src/include/storage/shm_mq.h
View file @
7d7eee8b
...
...
@@ -65,6 +65,6 @@ extern shm_mq_result shm_mq_receive(shm_mq_handle *mqh,
extern
shm_mq_result
shm_mq_wait_for_attach
(
shm_mq_handle
*
mqh
);
/* Smallest possible queue. */
extern
const
Size
shm_mq_minimum_size
;
extern
PGDLLIMPORT
const
Size
shm_mq_minimum_size
;
#endif
/* SHM_MQ_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