aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/util/u_debug_stack.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/auxiliary/util/u_debug_stack.h')
-rw-r--r--src/gallium/auxiliary/util/u_debug_stack.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_debug_stack.h b/src/gallium/auxiliary/util/u_debug_stack.h
index 0effcbe5259..fff41a5a9ea 100644
--- a/src/gallium/auxiliary/util/u_debug_stack.h
+++ b/src/gallium/auxiliary/util/u_debug_stack.h
@@ -60,7 +60,9 @@ extern "C" {
struct debug_stack_frame
{
#ifdef HAVE_LIBUNWIND
- char buf[128];
+ unw_word_t start_ip;
+ unsigned int off;
+ const char *procname;
#else
const void *function;
#endif