| commit | 796267f3370f37bc3b7657b53c6eda16bab3c930 | [log] [tgz] |
|---|---|---|
| author | Petr Machata <pmachata@redhat.com> | Wed Apr 04 19:09:37 2012 +0200 |
| committer | Petr Machata <pmachata@redhat.com> | Thu Apr 19 01:36:35 2012 +0200 |
| tree | 227d16ce5cc42ae20788096d292f71dce792d7dc | |
| parent | 157cc4d6ee93f35e3aa65edcf57f369ae4e4677c [diff] [blame] |
options.no_plt is useless - or, as of now, it's used to decide whether or not we should display "unexpected breakpoint" messages
diff --git a/handle_event.c b/handle_event.c index c96b9e6..57695af 100644 --- a/handle_event.c +++ b/handle_event.c
@@ -700,10 +700,10 @@ return; } - if (event->proc->state != STATE_IGNORED && !options.no_plt) { + if (event->proc->state != STATE_IGNORED) output_line(event->proc, "unexpected breakpoint at %p", brk_addr); - } + continue_process(event->proc->pid); }