aboutsummaryrefslogtreecommitdiff
path: root/src/common/include.am
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2016-03-24 11:15:19 -0400
committerNick Mathewson <nickm@torproject.org>2016-05-11 13:25:11 -0400
commit80a6c8caa3910b18ce50ef870ef0af546c64faa2 (patch)
tree2f48426164336a059e8f3ff02ae631463017d78c /src/common/include.am
parent4e76b206b5fac18805a5cb2c3440dd367bd3b92d (diff)
downloadtor-80a6c8caa3910b18ce50ef870ef0af546c64faa2.tar.gz
tor-80a6c8caa3910b18ce50ef870ef0af546c64faa2.zip
Basic work on a publish/subscribe abstraction
The goal here is to provide a way to decouple pieces of the code that want to learn "when something happens" from those that realize that it has happened. The implementation here consists of a generic backend, plus a set of macros to define and implement a set of type-safe frontends.
Diffstat (limited to 'src/common/include.am')
-rw-r--r--src/common/include.am2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/include.am b/src/common/include.am
index 5afb30da6a..05342e9e1c 100644
--- a/src/common/include.am
+++ b/src/common/include.am
@@ -67,6 +67,7 @@ LIBOR_A_SOURCES = \
src/common/di_ops.c \
src/common/log.c \
src/common/memarea.c \
+ src/common/pubsub.c \
src/common/util.c \
src/common/util_format.c \
src/common/util_process.c \
@@ -132,6 +133,7 @@ COMMONHEADERS = \
src/common/memarea.h \
src/common/linux_syscalls.inc \
src/common/procmon.h \
+ src/common/pubsub.h \
src/common/sandbox.h \
src/common/testsupport.h \
src/common/torgzip.h \