summaryrefslogtreecommitdiff
path: root/src/mips/Gstep.c
diff options
context:
space:
mode:
authorDave Watson <davejwatson@fb.com>2017-12-28 08:58:55 -0800
committerDave Watson <davejwatson@fb.com>2018-01-03 10:22:54 -0800
commite5fc8e77fca1e9d6a5dace39f74f945ce8c56e02 (patch)
tree4b1be7ceef38bca53ae6f57a4682ea8208f3e0ca /src/mips/Gstep.c
parent304f9ea971be33c790e1f28f1b268f6c73458183 (diff)
downloadlibunwind-e5fc8e77fca1e9d6a5dace39f74f945ce8c56e02.tar.gz
Remove unw_handle_signal_frame from public API.
Diffstat (limited to 'src/mips/Gstep.c')
-rw-r--r--src/mips/Gstep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mips/Gstep.c b/src/mips/Gstep.c
index d4fc690c..937136ae 100644
--- a/src/mips/Gstep.c
+++ b/src/mips/Gstep.c
@@ -26,8 +26,8 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
#include "unwind_i.h"
#include "offsets.h"
-int
-unw_handle_signal_frame (unw_cursor_t *cursor)
+static int
+mips_handle_signal_frame (unw_cursor_t *cursor)
{
struct cursor *c = (struct cursor *) cursor;
unw_word_t sc_addr, sp_addr = c->dwarf.cfa;
@@ -116,7 +116,7 @@ unw_step (unw_cursor_t *cursor)
struct cursor *c = (struct cursor *) cursor;
int ret;
- ret = unw_handle_signal_frame (cursor);
+ ret = mips_handle_signal_frame (cursor);
if (ret < 0)
/* Not a signal frame, try DWARF-based unwinding. */
ret = dwarf_step (&c->dwarf);