From: Christian Franke Date: Tue, 19 Nov 2013 14:11:41 +0000 (+0000) Subject: lib: remove unused thread_master_debug function X-Git-Tag: frr-2.0-rc1~1610 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=514991c76366c2a9f4c644714ad0722df0eed532;p=mirror%2Ffrr.git lib: remove unused thread_master_debug function Signed-off-by: Christian Franke Signed-off-by: David Lamparter --- diff --git a/lib/thread.c b/lib/thread.c index 27c29d6c8e..ddb95c015c 100644 --- a/lib/thread.c +++ b/lib/thread.c @@ -496,35 +496,6 @@ DEFUN(clear_thread_cpu, return CMD_SUCCESS; } -/* List allocation and head/tail print out. */ -static void -thread_list_debug (struct thread_list *list) -{ - printf ("count [%d] head [%p] tail [%p]\n", - list->count, list->head, list->tail); -} - -/* Debug print for thread_master. */ -static void __attribute__ ((unused)) -thread_master_debug (struct thread_master *m) -{ - printf ("-----------\n"); - printf ("readlist : "); - thread_list_debug (&m->read); - printf ("writelist : "); - thread_list_debug (&m->write); - printf ("timerlist : "); - thread_list_debug (&m->timer); - printf ("eventlist : "); - thread_list_debug (&m->event); - printf ("unuselist : "); - thread_list_debug (&m->unuse); - printf ("bgndlist : "); - thread_list_debug (&m->background); - printf ("total alloc: [%ld]\n", m->alloc); - printf ("-----------\n"); -} - /* Allocate new thread master. */ struct thread_master * thread_master_create ()