diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-05-16 21:52:35 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-05-16 21:58:34 +0200 |
commit | e4ee6e5cc3e8e23e1ecc0d9fa756d9cc2534d218 (patch) | |
tree | 4264b1334f465b36c7f8c726eb9bf94f00ac5550 /Makefile.am | |
parent | eb01ba5de14859d7a94835ab9299de40132d549a (diff) |
bus: make bus ref counting atomic
This is preparation to allow sd_bus_message obejcts to be processed in a
different thread from their originating sd_bus object.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 4c5e6fcdf1..526598277a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -695,7 +695,8 @@ libsystemd_shared_la_SOURCES = \ src/shared/fileio.h \ src/shared/output-mode.h \ src/shared/MurmurHash3.c \ - src/shared/MurmurHash3.h + src/shared/MurmurHash3.h \ + src/shared/refcnt.h #------------------------------------------------------------------------------- noinst_LTLIBRARIES += \ |