From a12feb1d950d2fc2d30ac69f1175e9fa7d48deaf Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Thu, 10 Jun 2010 21:43:28 +0200 Subject: Remove D_ENTER/D_RETURN, use gdb tracepoints + readelf/awk magic instead --- src/list.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'src/list.c') diff --git a/src/list.c b/src/list.c index 7eef5e3..989cfcf 100644 --- a/src/list.c +++ b/src/list.c @@ -33,8 +33,6 @@ void init_list_mode(void) feh_file *file = NULL; int j = 0; - D_ENTER(4); - mode = "list"; if (!opt.customlist) @@ -58,18 +56,16 @@ void init_list_mode(void) void init_loadables_mode(void) { - D_ENTER(4); mode = "loadables"; real_loadables_mode(1); - D_RETURN_(4); + return; } void init_unloadables_mode(void) { - D_ENTER(4); mode = "unloadables"; real_loadables_mode(0); - D_RETURN_(4); + return; } void real_loadables_mode(int loadable) @@ -77,7 +73,6 @@ void real_loadables_mode(int loadable) feh_file *file; gib_list *l; - D_ENTER(4); opt.quiet = 1; for (l = filelist; l; l = l->next) { -- cgit v1.2.3