diff options
Diffstat (limited to 'tapset/context-unwind.stp')
-rw-r--r-- | tapset/context-unwind.stp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tapset/context-unwind.stp b/tapset/context-unwind.stp index c53de8f0..a0836ed6 100644 --- a/tapset/context-unwind.stp +++ b/tapset/context-unwind.stp @@ -1,5 +1,5 @@ // context-unwind tapset -// Copyright (C) 2005, 2006, 2007 Red Hat Inc. +// Copyright (C) 2005-2008 Red Hat Inc. // Copyright (C) 2006 Intel Corporation. // // This file is part of systemtap, and is free software. You can @@ -8,11 +8,11 @@ // later version. %{ -#ifndef STP_USE_DWARF_UNWINDER -#define STP_USE_DWARF_UNWINDER 1 +#ifndef STP_NEED_UNWIND_DATA +#define STP_NEED_UNWIND_DATA 1 #endif -#ifndef NEED_SYMBOL_DATA -#define NEED_SYMBOL_DATA 1 +#ifndef STP_NEED_SYMBOL_DATA +#define STP_NEED_SYMBOL_DATA 1 #endif %} @@ -68,4 +68,4 @@ function caller_addr:long () %{ /* pure */ THIS->__retvalue = (int64_t)(long)_stp_ret_addr_r(CONTEXT->pi); else THIS->__retvalue = 0; -%}
\ No newline at end of file +%} |