diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-03-21 02:42:28 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-03-21 02:54:47 +0100 |
commit | 30bdd695250eeecbf0b36c1e3c90d67ca03953ed (patch) | |
tree | 22d0a74a19b6b0354242cc31334684709affa574 /Makefile.am | |
parent | 11ea5a4a7f6530b970ab32f1b6215c74e7475979 (diff) |
shared: add simple priority queue implementation
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index d8e9b16be0..13eba27fed 100644 --- a/Makefile.am +++ b/Makefile.am @@ -620,6 +620,8 @@ libsystemd_shared_la_SOURCES = \ src/shared/set.h \ src/shared/fdset.c \ src/shared/fdset.h \ + src/shared/prioq.c \ + src/shared/prioq.h \ src/shared/strv.c \ src/shared/strv.h \ src/shared/env-util.c \ @@ -1075,7 +1077,8 @@ noinst_tests += \ test-sched-prio \ test-calendarspec \ test-strip-tab-ansi \ - test-cgroup-util + test-cgroup-util \ + test-prioq EXTRA_DIST += \ test/sched_idle_bad.service \ @@ -1166,6 +1169,15 @@ test_util_CFLAGS = \ test_util_LDADD = \ libsystemd-core.la +test_prioq_SOURCES = \ + src/test/test-prioq.c + +test_prioq_CFLAGS = \ + $(AM_CFLAGS) + +test_prioq_LDADD = \ + libsystemd-core.la + test_log_SOURCES = \ src/test/test-log.c |