mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-17 12:53:17 +08:00
Protoization.
This commit is contained in:
@ -435,8 +435,7 @@ recursive_trap:
|
||||
/* Convert ch from a hex digit to an int */
|
||||
|
||||
static int
|
||||
hex(ch)
|
||||
unsigned char ch;
|
||||
hex (unsigned char ch)
|
||||
{
|
||||
if (ch >= 'a' && ch <= 'f')
|
||||
return ch-'a'+10;
|
||||
@ -453,7 +452,7 @@ static char remcomOutBuffer[BUFMAX];
|
||||
/* scan for the sequence $<data>#<checksum> */
|
||||
|
||||
unsigned char *
|
||||
getpacket ()
|
||||
getpacket (void)
|
||||
{
|
||||
unsigned char *buffer = &remcomInBuffer[0];
|
||||
unsigned char checksum;
|
||||
@ -519,8 +518,7 @@ retry:
|
||||
/* send the packet in buffer. */
|
||||
|
||||
static void
|
||||
putpacket(buffer)
|
||||
unsigned char *buffer;
|
||||
putpacket (unsigned char *buffer)
|
||||
{
|
||||
unsigned char checksum;
|
||||
int count;
|
||||
@ -560,11 +558,7 @@ static volatile int mem_err = 0;
|
||||
*/
|
||||
|
||||
static unsigned char *
|
||||
mem2hex(mem, buf, count, may_fault)
|
||||
unsigned char *mem;
|
||||
unsigned char *buf;
|
||||
int count;
|
||||
int may_fault;
|
||||
mem2hex (unsigned char *mem, unsigned char *buf, int count, int may_fault)
|
||||
{
|
||||
unsigned char ch;
|
||||
|
||||
@ -590,11 +584,7 @@ mem2hex(mem, buf, count, may_fault)
|
||||
* return a pointer to the character AFTER the last byte written */
|
||||
|
||||
static char *
|
||||
hex2mem(buf, mem, count, may_fault)
|
||||
unsigned char *buf;
|
||||
unsigned char *mem;
|
||||
int count;
|
||||
int may_fault;
|
||||
hex2mem (unsigned char *buf, unsigned char *mem, int count, int may_fault)
|
||||
{
|
||||
int i;
|
||||
unsigned char ch;
|
||||
@ -640,7 +630,7 @@ static struct hard_trap_info
|
||||
/* Set up exception handlers for tracing and breakpoints */
|
||||
|
||||
void
|
||||
set_debug_traps()
|
||||
set_debug_traps (void)
|
||||
{
|
||||
struct hard_trap_info *ht;
|
||||
|
||||
@ -667,8 +657,7 @@ _fltr_set_mem_err:
|
||||
");
|
||||
|
||||
static void
|
||||
set_mem_fault_trap(enable)
|
||||
int enable;
|
||||
set_mem_fault_trap (int enable)
|
||||
{
|
||||
extern void fltr_set_mem_err();
|
||||
mem_err = 0;
|
||||
@ -691,8 +680,7 @@ _dummy_hw_breakpoint:
|
||||
");
|
||||
|
||||
static void
|
||||
set_hw_breakpoint_trap(enable)
|
||||
int enable;
|
||||
set_hw_breakpoint_trap (int enable)
|
||||
{
|
||||
extern void dummy_hw_breakpoint();
|
||||
|
||||
@ -703,7 +691,7 @@ set_hw_breakpoint_trap(enable)
|
||||
}
|
||||
|
||||
static void
|
||||
get_in_break_mode()
|
||||
get_in_break_mode (void)
|
||||
{
|
||||
#if 0
|
||||
int x;
|
||||
@ -727,8 +715,7 @@ get_in_break_mode()
|
||||
/* Convert the SPARC hardware trap type code to a unix signal number. */
|
||||
|
||||
static int
|
||||
computeSignal(tt)
|
||||
int tt;
|
||||
computeSignal (int tt)
|
||||
{
|
||||
struct hard_trap_info *ht;
|
||||
|
||||
@ -774,8 +761,7 @@ hexToInt(char **ptr, int *intValue)
|
||||
*/
|
||||
|
||||
static void
|
||||
handle_exception (registers)
|
||||
unsigned long *registers;
|
||||
handle_exception (unsigned long *registers)
|
||||
{
|
||||
int tt; /* Trap type */
|
||||
int sigval;
|
||||
@ -1049,7 +1035,7 @@ handle_exception (registers)
|
||||
the debugger. */
|
||||
|
||||
void
|
||||
breakpoint()
|
||||
breakpoint (void)
|
||||
{
|
||||
if (!initialized)
|
||||
return;
|
||||
@ -1061,7 +1047,7 @@ breakpoint()
|
||||
}
|
||||
|
||||
static void
|
||||
hw_breakpoint()
|
||||
hw_breakpoint (void)
|
||||
{
|
||||
asm("
|
||||
ta 127
|
||||
|
Reference in New Issue
Block a user