mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2025-04-03 20:42:17 +02:00
Annotate potentially unused variable in tests/Gtest-bt.c
tests/Gtest-bt.c: In function 'sighandler': tests/Gtest-bt.c:158:15: warning: unused variable 'uc' [-Wunused-variable]
This commit is contained in:
parent
23fdda6a28
commit
0c838c4d44
1 changed files with 5 additions and 1 deletions
|
@ -25,6 +25,8 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||||
# include "config.h"
|
# include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include "compiler.h"
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#if HAVE_EXECINFO_H
|
#if HAVE_EXECINFO_H
|
||||||
# include <execinfo.h>
|
# include <execinfo.h>
|
||||||
|
@ -164,9 +166,11 @@ bar (long v)
|
||||||
void
|
void
|
||||||
sighandler (int signal, void *siginfo __attribute__((unused)), void *context)
|
sighandler (int signal, void *siginfo __attribute__((unused)), void *context)
|
||||||
{
|
{
|
||||||
ucontext_t *uc = context;
|
ucontext_t *uc UNUSED;
|
||||||
int sp;
|
int sp;
|
||||||
|
|
||||||
|
uc = context;
|
||||||
|
|
||||||
if (verbose)
|
if (verbose)
|
||||||
{
|
{
|
||||||
printf ("sighandler: got signal %d, sp=%p", signal, &sp);
|
printf ("sighandler: got signal %d, sp=%p", signal, &sp);
|
||||||
|
|
Loading…
Add table
Reference in a new issue