mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2025-01-08 18:33:42 +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:
parent
647ca77f52
commit
e1ca874882
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue