Protoization.

This commit is contained in:
Kevin Buettner 2000-08-10 00:58:09 +00:00
parent 35fc82857e
commit dbb41be163
3 changed files with 18 additions and 18 deletions

View File

@ -1,3 +1,9 @@
2000-08-09 Kevin Buettner <kevinb@redhat.com>
* core-sol2.c (fetch_core_registers): Protoize; add prefatory
comment.
* corefile.c (specify_exec_file_hook, generic_search): Protoize.
2000-08-09 Michael Snyder <msnyder@cleaver.cygnus.com> 2000-08-09 Michael Snyder <msnyder@cleaver.cygnus.com>
* blockframe.c (sigtramp_saved_pc): Use dynamic allocation, * blockframe.c (sigtramp_saved_pc): Use dynamic allocation,

View File

@ -45,12 +45,15 @@
static void fetch_core_registers (char *, unsigned, int, CORE_ADDR); static void fetch_core_registers (char *, unsigned, int, CORE_ADDR);
/* Fetch registers from core file data pointed to by CORE_REG_SECT. When
WHICH is 0, the the general register set is fetched; when WHICH is
2, the floating point registers are fetched. CORE_REG_SIZE is used
to validate the size of the data pointed to by CORE_REG_SECT. REG_ADDR
is unused. */
static void static void
fetch_core_registers (core_reg_sect, core_reg_size, which, reg_addr) fetch_core_registers (char *core_reg_sect, unsigned core_reg_size, int which,
char *core_reg_sect; CORE_ADDR reg_addr)
unsigned core_reg_size;
int which;
CORE_ADDR reg_addr; /* Unused in this version */
{ {
prgregset_t prgregset; prgregset_t prgregset;
prfpregset_t prfpregset; prfpregset_t prfpregset;

View File

@ -120,8 +120,7 @@ call_extra_exec_file_hooks (char *filename)
This is called from the x-window display code. */ This is called from the x-window display code. */
void void
specify_exec_file_hook (hook) specify_exec_file_hook (void (*hook) (char *))
void (*hook) (char *);
{ {
hook_type *new_array; hook_type *new_array;
@ -349,17 +348,9 @@ read_memory_string (CORE_ADDR memaddr, char *buffer, int max_len)
if the protocol has a less general search function, they can call this if the protocol has a less general search function, they can call this
in the cases it can't handle. */ in the cases it can't handle. */
void void
generic_search (len, data, mask, startaddr, increment, lorange, hirange generic_search (int len, char *data, char *mask, CORE_ADDR startaddr,
addr_found, data_found) int increment, CORE_ADDR lorange, CORE_ADDR hirange,
int len; CORE_ADDR *addr_found, char *data_found)
char *data;
char *mask;
CORE_ADDR startaddr;
int increment;
CORE_ADDR lorange;
CORE_ADDR hirange;
CORE_ADDR *addr_found;
char *data_found;
{ {
int i; int i;
CORE_ADDR curaddr = startaddr; CORE_ADDR curaddr = startaddr;