diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2019-01-31 03:09:45 +0100 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2019-08-01 17:02:53 +0200 |
commit | 77faa5bd79cca6d6e059526da61074ac8d0a3895 (patch) | |
tree | 07e0faf27d1641003f693d549ca2e62d4c795c0b /tests | |
parent | lib: use DECLARE_HEAP for timers instead of pqueue (diff) | |
download | frr-77faa5bd79cca6d6e059526da61074ac8d0a3895.tar.xz frr-77faa5bd79cca6d6e059526da61074ac8d0a3895.zip |
lib: remove pqueue_* (again)
All users of the pqueue_* implementations have been migrated to use
some new data structure (TYPEDSKIP for ospf, HEAP for thread.c).
Remove.
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'tests')
-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 6624de738..40c311b91 100644 --- a/tests/lib/cxxcompat.c +++ b/tests/lib/cxxcompat.c @@ -73,7 +73,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 |