Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ec9037d

Browse filesBrowse files
committed
Single-reader, single-writer, lightweight shared message queue.
This code provides infrastructure for user backends to communicate relatively easily with background workers. The message queue is structured as a ring buffer and allows messages of arbitary length to be sent and received. Patch by me. Review by KaiGai Kohei and Andres Freund.
1 parent 6ddd513 commit ec9037d
Copy full SHA for ec9037d

File tree

Expand file treeCollapse file tree

3 files changed

+1016
-1
lines changed
Filter options
Expand file treeCollapse file tree

3 files changed

+1016
-1
lines changed

‎src/backend/storage/ipc/Makefile

Copy file name to clipboardExpand all lines: src/backend/storage/ipc/Makefile
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ endif
1616
endif
1717

1818
OBJS = dsm_impl.o dsm.o ipc.o ipci.o pmsignal.o procarray.o procsignal.o \
19-
shmem.o shmqueue.o shm_toc.o sinval.o sinvaladt.o standby.o
19+
shmem.o shmqueue.o shm_mq.o shm_toc.o sinval.o sinvaladt.o standby.o
2020

2121
include $(top_srcdir)/src/backend/common.mk

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.