1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-17 15:31:43 +02:00

Change ucontext_t to unw_context_t.

Change getcontext() to unw_getcontext().

(Logical change 1.33)
This commit is contained in:
mostang.com!davidm 2003-01-14 07:11:56 +00:00
parent ad2276c314
commit 7776832389

View file

@ -53,9 +53,9 @@ stack trace:
unw_cursor_t cursor; unw_cursor_t cursor;
unw_word_t ip, sp; unw_word_t ip, sp;
ucontext_t uc; unw_context_t uc;
getcontext(&uc); unw_getcontext(&uc);
unw_init_local(&cursor, &uc); unw_init_local(&cursor, &uc);
do do
{ {