summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2015-04-08 17:22:15 +0200
committerLennart Poettering <lennart@poettering.net>2015-04-08 17:22:15 +0200
commit4a280a7e78e633bd57cd1d5e6333d8fa29906e42 (patch)
tree269d746c9412f7e64749634be50cc7e90052d036 /Makefile.am
parent298a35ab54dba269fe94ac33f790792cf9f6a485 (diff)
util: add minimal OrderedSet type
OrderedSet implements a Set-like structure, but maintains insertion ordered. It is hence to Set what OrderedHashmap is for Hashmap. Internally, this is only a wrapper around OrderedHashmap for now, but this could one day be improved and be added to hashmap.c natively.
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
index a575af6735..0a57389447 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -792,6 +792,7 @@ libsystemd_shared_la_SOURCES = \
src/shared/siphash24.c \
src/shared/siphash24.h \
src/shared/set.h \
+ src/shared/ordered-set.h \
src/shared/fdset.c \
src/shared/fdset.h \
src/shared/prioq.c \