Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
7d7eee8b
Commit
7d7eee8b
authored
11 years ago
by
Andrew Dunstan
Browse files
Options
Downloads
Patches
Plain Diff
Export a few more symbols required for test_shm_mq module.
Patch from Amit Kapila.
parent
ad6bf029
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/include/miscadmin.h
+1
-1
1 addition, 1 deletion
src/include/miscadmin.h
src/include/postmaster/bgworker.h
+1
-1
1 addition, 1 deletion
src/include/postmaster/bgworker.h
src/include/storage/shm_mq.h
+1
-1
1 addition, 1 deletion
src/include/storage/shm_mq.h
with
3 additions
and
3 deletions
src/include/miscadmin.h
+
1
−
1
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
;
...
...
This diff is collapsed.
Click to expand it.
src/include/postmaster/bgworker.h
+
1
−
1
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
...
...
This diff is collapsed.
Click to expand it.
src/include/storage/shm_mq.h
+
1
−
1
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 */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment