Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit ec9037d

Browse 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

File tree

3 files changed

+1016
-1
lines changed

3 files changed

+1016
-1
lines changed

src/backend/storage/ipc/Makefile

+1-1
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)