diff options
-rw-r--r-- | libdw/cfi.h | 5 | ||||
-rw-r--r-- | libdw/fde.c | 5 |
2 files changed, 3 insertions, 7 deletions
diff --git a/libdw/cfi.h b/libdw/cfi.h index f0296de7..eb765205 100644 --- a/libdw/cfi.h +++ b/libdw/cfi.h @@ -213,11 +213,6 @@ extern struct dwarf_fde *__libdw_find_fde (Dwarf_CFI *cache, Dwarf_Addr address) __nonnull_attribute__ (1) internal_function; -/* Look for an FDE by its offset in the section. */ -extern struct dwarf_fde *__libdw_fde_by_offset (Dwarf_CFI *cache, - Dwarf_Off offset) - __nonnull_attribute__ (1) internal_function; - /* Process the FDE that contains the given PC address, to yield the frame state when stopped there. The return value is a DWARF_E_* error code. */ diff --git a/libdw/fde.c b/libdw/fde.c index 7f36c4a9..12b5995f 100644 --- a/libdw/fde.c +++ b/libdw/fde.c @@ -142,8 +142,9 @@ intern_fde (Dwarf_CFI *cache, const Dwarf_FDE *entry) return fde; } -struct dwarf_fde * -internal_function +/* Look for an FDE by its offset in the section. + Should be called with cache->lock held. */ +static struct dwarf_fde * __libdw_fde_by_offset (Dwarf_CFI *cache, Dwarf_Off offset) { Dwarf_CFI_Entry entry; |