aboutsummaryrefslogtreecommitdiff
path: root/src/backend/postmaster/interrupt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/postmaster/interrupt.c')
-rw-r--r--src/backend/postmaster/interrupt.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/backend/postmaster/interrupt.c b/src/backend/postmaster/interrupt.c
index 0ae9bf906ec..f24f574e748 100644
--- a/src/backend/postmaster/interrupt.c
+++ b/src/backend/postmaster/interrupt.c
@@ -48,6 +48,10 @@ ProcessMainLoopInterrupts(void)
/* Perform logging of memory contexts of this process */
if (LogMemoryContextPending)
ProcessLogMemoryContextInterrupt();
+
+ /* Publish memory contexts of this process */
+ if (PublishMemoryContextPending)
+ ProcessGetMemoryContextInterrupt();
}
/*