summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Munday <mike.munday@ibm.com>2018-01-11 18:53:09 +0000
committerDave Watson <davejwatson@fb.com>2018-01-11 10:53:09 -0800
commite1ca874882d3cd2f4c16440acf30f4eef89c7959 (patch)
treee27a5f862ada00fe62062e27134979a199dd5764
parent647ca77f52ace83cd8f42cb3f8655018be8d7cc7 (diff)
downloadlibunwind-e1ca874882d3cd2f4c16440acf30f4eef89c7959.tar.gz
s390x: remove unw_handle_signal_frame from public API. (#62)
Ports e287b69 to s390x and fixes the namespace check.
-rw-r--r--src/s390x/Gstep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/s390x/Gstep.c b/src/s390x/Gstep.c
index 5f23debd..0b79580b 100644
--- a/src/s390x/Gstep.c
+++ b/src/s390x/Gstep.c
@@ -29,8 +29,8 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
#include "unwind_i.h"
#include <signal.h>
-int
-unw_handle_signal_frame (unw_cursor_t *cursor)
+static int
+s390x_handle_signal_frame (unw_cursor_t *cursor)
{
struct cursor *c = (struct cursor *) cursor;
int ret, i;
@@ -127,7 +127,7 @@ unw_step (unw_cursor_t *cursor)
if (sig > 0)
{
c->sigcontext_format = sig;
- ret = unw_handle_signal_frame (cursor);
+ ret = s390x_handle_signal_frame (cursor);
}
else
{