old-cross-binutils/gdb/testsuite/gdb.base/bp-permanent.c
Andreas Arnez a267f3ad3f GDB testsuite: More fixes for warnings with -std=gnu11
Fix some more C compiler warnings for missing function return types
and implicit function declarations in the GDB testsuite.

gdb/testsuite/ChangeLog:

	* gdb.base/bp-permanent.c: Include unistd.h.
	* gdb.python/py-framefilter-mi.c (main): Add return type.
	* gdb.python/py-framefilter.c (main): Likewise.
	* gdb.trace/actions-changed.c (main): Likewise.
2014-11-17 10:26:31 +01:00

129 lines
2.2 KiB
C

/* Copyright (C) 2014 Free Software Foundation, Inc.
This file is part of GDB.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include <string.h>
#ifdef SIGNALS
#include <signal.h>
#include <unistd.h>
#endif
#define NOP asm("nop")
/* Buffer holding the breakpoint instruction. */
unsigned char buffer[16];
volatile unsigned char *addr_bp;
volatile unsigned char *addr_after_bp;
int counter = 0;
void
test (void)
{
NOP;
NOP;
NOP;
NOP; /* write permanent bp here */
NOP; /* after permanent bp */
NOP;
NOP;
NOP;
NOP;
NOP;
counter++;
}
void
setup (void)
{
memcpy (buffer, (void *) addr_bp, addr_after_bp - addr_bp);
}
void
test_basics (void)
{
test (); /* for SIGTRAP */
test (); /* for breakpoint once */
test (); /* for breakpoint twice */
test (); /* for disabled bp SIGTRAP */
test (); /* for breakpoint thrice */
}
void
test_next (void)
{
test (); /* for next */
counter = 0; /* after next */
}
#ifdef SIGNALS
static void
test_signal_handler (int sig)
{
}
void
test_signal_with_handler (void)
{
signal (SIGUSR1, test_signal_handler);
test ();
}
void
test_signal_no_handler (void)
{
signal (SIGUSR1, SIG_IGN);
test ();
}
static void
test_signal_nested_handler ()
{
test ();
}
void
test_signal_nested_done (void)
{
}
void
test_signal_nested (void)
{
counter = 0;
signal (SIGALRM, test_signal_nested_handler);
alarm (1);
test ();
test_signal_nested_done ();
}
#endif
int
main (void)
{
setup ();
test_basics ();
test_next ();
#ifdef SIGNALS
test_signal_nested ();
test_signal_with_handler ();
test_signal_no_handler ();
#endif
return 0;
}