diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-01-08 01:21:21 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-01-08 01:21:21 +0100 |
commit | 37335ee22a5d2022c28e1ff276515e5f0360af6b (patch) | |
tree | 5d659348d44b99b358363b40587601594b525d99 /pimd/pim_main.c | |
parent | lib: add grammar_sandbox to .gitignore (diff) | |
download | frr-37335ee22a5d2022c28e1ff276515e5f0360af6b.tar.xz frr-37335ee22a5d2022c28e1ff276515e5f0360af6b.zip |
pimd: Remove knowledge of HAVE_CLOCK_MONOTONIC
thread.c fails to build if we do not have CLOCK_MONOTONIC
no need to have pim have any knowledge of it.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_main.c')
-rw-r--r-- | pimd/pim_main.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/pimd/pim_main.c b/pimd/pim_main.c index aa3db3d5b..5e7f4bfa9 100644 --- a/pimd/pim_main.c +++ b/pimd/pim_main.c @@ -272,12 +272,6 @@ int main(int argc, char** argv, char** envp) { zlog_notice("PIM_UNEXPECTED_KERNEL_UPCALL: report unexpected kernel upcall"); #endif -#ifdef HAVE_CLOCK_MONOTONIC - zlog_notice("HAVE_CLOCK_MONOTONIC"); -#else - zlog_notice("!HAVE_CLOCK_MONOTONIC"); -#endif - while (thread_fetch(master, &thread)) thread_call(&thread); |