1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-05-06 06:35:18 +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_word_t ip, sp;
ucontext_t uc;
unw_context_t uc;
getcontext(&uc);
unw_getcontext(&uc);
unw_init_local(&cursor, &uc);
do
{