summaryrefslogtreecommitdiff
path: root/src/mips/Gstep.c
diff options
context:
space:
mode:
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);