]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit
gdb: make frame_unwind_try_unwinder return bool
authorGuinevere Larsen <guinevere@redhat.com>
Mon, 14 Oct 2024 11:58:29 +0000 (08:58 -0300)
committerGuinevere Larsen <guinevere@redhat.com>
Mon, 14 Oct 2024 12:11:02 +0000 (09:11 -0300)
commita227513b8b7bcfcb7ee33a5c437cd9cf8e2bdc86
tree61b7ed55e06c65f94b064f9e6f33a88d7f4e6618
parent22c62092858e5623338a18a42491718d754977e8
gdb: make frame_unwind_try_unwinder return bool

Before this commit, the function frame_unwind_try_unwinder would return
an int, where 1 meant the unwinder works, and 0 it doesn't. This is just
a boolean with extra steps, so this commit updates the function to
return bool instead.
gdb/frame-unwind.c