From 4e0cdd057bde57ae2123874f5dd9ca55b7de6146 Mon Sep 17 00:00:00 2001 From: Serguei Makarov Date: Fri, 17 Aug 2012 15:18:47 -0400 Subject: [PATCH] PR6580: more missed @unwind_error() renaming. --- tapset/linux/context-symbols.stp | 4 ++-- tapset/linux/ucontext-symbols.stp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tapset/linux/context-symbols.stp b/tapset/linux/context-symbols.stp index 66b2eb748..1f3bca0c5 100644 --- a/tapset/linux/context-symbols.stp +++ b/tapset/linux/context-symbols.stp @@ -21,10 +21,10 @@ function stack:long (n:long) { /* XXX this is the naive method */ b = backtrace (); orig_n = n; sym = tokenize (b, " "); - if (sym == "") @unwind_error(orig_n); + if (sym == "") @__context_unwind_error(orig_n); while (n > 0) { sym = tokenize ("", " "); - if (sym == "") @unwind_error(orig_n); + if (sym == "") @__context_unwind_error(orig_n); n--; } return strtol(sym, 16) diff --git a/tapset/linux/ucontext-symbols.stp b/tapset/linux/ucontext-symbols.stp index bd38931d7..33d5a3689 100644 --- a/tapset/linux/ucontext-symbols.stp +++ b/tapset/linux/ucontext-symbols.stp @@ -21,10 +21,10 @@ function ustack:long (n:long) { /* XXX this is the naive method */ b = ubacktrace (); orig_n = n; sym = tokenize (b, " "); - if (sym == "") @unwind_error(orig_n); + if (sym == "") @__context_unwind_error(orig_n); while (n > 0) { sym = tokenize ("", " "); - if (sym == "") @unwind_error(orig_n); + if (sym == "") @__context_unwind_error(orig_n); n--; } return strtol(sym, 16) -- 2.43.5