summaryrefslogtreecommitdiff
path: root/src/aarch64
diff options
context:
space:
mode:
authorDave Watson <davejwatson@fb.com>2017-12-28 08:58:55 -0800
committerDave Watson <davejwatson@fb.com>2017-12-28 09:07:08 -0800
commite287b690682839a25db407662ced02c3ed732ab3 (patch)
tree4b1be7ceef38bca53ae6f57a4682ea8208f3e0ca /src/aarch64
parenta1437a3d27924e17d00021df3cc659bd998e8580 (diff)
downloadlibunwind-e287b690682839a25db407662ced02c3ed732ab3.tar.gz
Remove unw_handle_signal_frame from public API.
Diffstat (limited to 'src/aarch64')
-rw-r--r--src/aarch64/Gstep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/aarch64/Gstep.c b/src/aarch64/Gstep.c
index 473be7d7..940bec76 100644
--- a/src/aarch64/Gstep.c
+++ b/src/aarch64/Gstep.c
@@ -51,8 +51,8 @@ is_plt_entry (struct dwarf_cursor *c)
return ret;
}
-int
-unw_handle_signal_frame (unw_cursor_t *cursor)
+static int
+aarch64_handle_signal_frame (unw_cursor_t *cursor)
{
struct cursor *c = (struct cursor *) cursor;
int ret;
@@ -141,7 +141,7 @@ unw_step (unw_cursor_t *cursor)
/* Check if this is a signal frame. */
if (unw_is_signal_frame (cursor) > 0)
- return unw_handle_signal_frame (cursor);
+ return aarch64_handle_signal_frame (cursor);
ret = dwarf_step (&c->dwarf);
Debug(1, "dwarf_step()=%d\n", ret);