1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2025-01-24 09:10:29 +01:00

s390x: remove unw_handle_signal_frame from public API. (#62)

Ports e287b69 to s390x and fixes the namespace check.
This commit is contained in:
Michael Munday 2018-01-11 18:53:09 +00:00 committed by Dave Watson
parent 647ca77f52
commit e1ca874882

View file

@ -29,8 +29,8 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
#include "unwind_i.h" #include "unwind_i.h"
#include <signal.h> #include <signal.h>
int static int
unw_handle_signal_frame (unw_cursor_t *cursor) s390x_handle_signal_frame (unw_cursor_t *cursor)
{ {
struct cursor *c = (struct cursor *) cursor; struct cursor *c = (struct cursor *) cursor;
int ret, i; int ret, i;
@ -127,7 +127,7 @@ unw_step (unw_cursor_t *cursor)
if (sig > 0) if (sig > 0)
{ {
c->sigcontext_format = sig; c->sigcontext_format = sig;
ret = unw_handle_signal_frame (cursor); ret = s390x_handle_signal_frame (cursor);
} }
else else
{ {