summaryrefslogtreecommitdiff
path: root/src/list.c
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2010-06-10 21:43:28 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2010-06-10 21:43:28 +0200
commita12feb1d950d2fc2d30ac69f1175e9fa7d48deaf (patch)
treedb6b08ea008d3c4e42d0c83d01267f17e568da53 /src/list.c
parentc262680c9375940fbd2c1ebf97a15843422a2ede (diff)
Remove D_ENTER/D_RETURN, use gdb tracepoints + readelf/awk magic instead
Diffstat (limited to 'src/list.c')
-rw-r--r--src/list.c9
1 files changed, 2 insertions, 7 deletions
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) {