diff options
author | Sergio Durigan Junior <sergiodj@redhat.com> | 2012-05-08 01:35:35 +0000 |
---|---|---|
committer | Sergio Durigan Junior <sergiodj@redhat.com> | 2012-05-08 01:35:35 +0000 |
commit | d7333987804db4beca078f9b0afa61c8062630e0 (patch) | |
tree | 8375d820a22ac89367062b02ba1d9860cd4b35da /gdb/stap-probe.c | |
parent | c8599c937738a8b6798abef38e9270e222cc3b56 (diff) | |
download | gdb-d7333987804db4beca078f9b0afa61c8062630e0.zip gdb-d7333987804db4beca078f9b0afa61c8062630e0.tar.gz gdb-d7333987804db4beca078f9b0afa61c8062630e0.tar.bz2 |
2012-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
* probe.c (parse_probes): Move conditional to check for
debuginfo files from here...
* stap-probe.c (stap_get_probes): ... to here.
Diffstat (limited to 'gdb/stap-probe.c')
-rw-r--r-- | gdb/stap-probe.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/stap-probe.c b/gdb/stap-probe.c index 273ae07..506e6c3 100644 --- a/gdb/stap-probe.c +++ b/gdb/stap-probe.c @@ -1411,6 +1411,12 @@ stap_get_probes (VEC (probe_p) **probesp, struct objfile *objfile) struct sdt_note *iter; unsigned save_probesp_len = VEC_length (probe_p, *probesp); + if (objfile->separate_debug_objfile_backlink != NULL) + { + /* This is a .debug file, not the objfile itself. */ + return; + } + if (!elf_tdata (obfd)->sdt_note_head) { /* There isn't any probe here. */ |