diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2019-01-31 03:09:45 +0100 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2019-04-27 19:33:45 +0200 |
commit | 798ac49d06b6619adb4c5ac765b092397bc50a6c (patch) | |
tree | bb386ec0e20f0743728f46c74d96c68ae0a70d87 /tests/lib | |
parent | ospfd: replace pqueue_* with DECLARE_SKIPLIST (diff) | |
download | frr-798ac49d06b6619adb4c5ac765b092397bc50a6c.tar.xz frr-798ac49d06b6619adb4c5ac765b092397bc50a6c.zip |
lib: remove pqueue_*
All users of the pqueue_* implementations have been migrated to use
TYPEDSKIP_* skiplists. Remove.
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/cxxcompat.c | 1 | ||||
-rw-r--r-- | tests/lib/test_timer_correctness.c | 1 | ||||
-rw-r--r-- | tests/lib/test_timer_performance.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/tests/lib/cxxcompat.c b/tests/lib/cxxcompat.c index d10962993..b71361a23 100644 --- a/tests/lib/cxxcompat.c +++ b/tests/lib/cxxcompat.c @@ -72,7 +72,6 @@ #include "lib/openbsd-tree.h" #include "lib/pbr.h" #include "lib/plist.h" -#include "lib/pqueue.h" #include "lib/prefix.h" #include "lib/privs.h" #include "lib/ptm_lib.h" diff --git a/tests/lib/test_timer_correctness.c b/tests/lib/test_timer_correctness.c index 43e79ba9d..cbf9b0554 100644 --- a/tests/lib/test_timer_correctness.c +++ b/tests/lib/test_timer_correctness.c @@ -28,7 +28,6 @@ #include <unistd.h> #include "memory.h" -#include "pqueue.h" #include "prng.h" #include "thread.h" diff --git a/tests/lib/test_timer_performance.c b/tests/lib/test_timer_performance.c index d5f4badc8..2960e0d81 100644 --- a/tests/lib/test_timer_performance.c +++ b/tests/lib/test_timer_performance.c @@ -28,7 +28,6 @@ #include <unistd.h> #include "thread.h" -#include "pqueue.h" #include "prng.h" #define SCHEDULE_TIMERS 1000000 |