[Mesa-dev] [PATCH] android: gallium/util: fix u_debug_stack_android build
Stefan Schake
stschake at gmail.com
Sun Apr 22 13:36:48 UTC 2018
On Sun, Apr 22, 2018 at 1:11 PM, Mauro Rossi <issor.oruam at gmail.com> wrote:
> Fix for build errors in src/gallium/auxiliary/util/u_debug_stack_android.cpp
> error: cast to 'void *' from smaller integer type pid_t
>
> Fixes: ff904978a1 ("gallium/util: Android backtrace support")
>
> Cc: "18.1" <mesa-stable at lists.freedesktop.org>
> ---
> src/gallium/auxiliary/util/u_debug_stack_android.cpp | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/src/gallium/auxiliary/util/u_debug_stack_android.cpp b/src/gallium/auxiliary/util/u_debug_stack_android.cpp
> index b3d56aebe6..11e2d3962b 100644
> --- a/src/gallium/auxiliary/util/u_debug_stack_android.cpp
> +++ b/src/gallium/auxiliary/util/u_debug_stack_android.cpp
> @@ -49,10 +49,10 @@ debug_backtrace_capture(debug_stack_frame *mesa_backtrace,
> backtrace_table = _mesa_hash_table_create(NULL, _mesa_hash_pointer,
> _mesa_key_pointer_equal);
>
> - backtrace_entry = _mesa_hash_table_search(backtrace_table, (void*) tid);
> + backtrace_entry = _mesa_hash_table_search(backtrace_table, (void*)(uintptr_t) tid);
> if (!backtrace_entry) {
> backtrace = Backtrace::Create(getpid(), tid);
> - _mesa_hash_table_insert(backtrace_table, (void*) tid, backtrace);
> + _mesa_hash_table_insert(backtrace_table, (void*)(uintptr_t) tid, backtrace);
> } else {
> backtrace = (Backtrace *) backtrace_entry->data;
> }
> --
> 2.14.1
>
Sorry, I'm doing ARMv7/32-bit builds so this slipped through.
Reviewed-By: Stefan Schake <stschake at gmail.com>
Thanks!
More information about the mesa-dev
mailing list