OSDN Git Service

Protoization.
authorKevin Buettner <kevinb@redhat.com>
Thu, 10 Aug 2000 00:58:09 +0000 (00:58 +0000)
committerKevin Buettner <kevinb@redhat.com>
Thu, 10 Aug 2000 00:58:09 +0000 (00:58 +0000)
gdb/ChangeLog
gdb/core-sol2.c
gdb/corefile.c

index fe38e8a..4c6bf1a 100644 (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>
 
        * blockframe.c (sigtramp_saved_pc): Use dynamic allocation, 
index 4cf7d33..59aab7b 100644 (file)
 
 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
-fetch_core_registers (core_reg_sect, core_reg_size, which, reg_addr)
-     char *core_reg_sect;
-     unsigned core_reg_size;
-     int which;
-     CORE_ADDR reg_addr;       /* Unused in this version */
+fetch_core_registers (char *core_reg_sect, unsigned core_reg_size, int which,
+                     CORE_ADDR reg_addr)
 {
   prgregset_t prgregset;
   prfpregset_t prfpregset;
index 6ff1ac5..5c816b1 100644 (file)
@@ -120,8 +120,7 @@ call_extra_exec_file_hooks (char *filename)
    This is called from the x-window display code.  */
 
 void
-specify_exec_file_hook (hook)
-     void (*hook) (char *);
+specify_exec_file_hook (void (*hook) (char *))
 {
   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
    in the cases it can't handle.  */
 void
-generic_search (len, data, mask, startaddr, increment, lorange, hirange
-               addr_found, data_found)
-     int len;
-     char *data;
-     char *mask;
-     CORE_ADDR startaddr;
-     int increment;
-     CORE_ADDR lorange;
-     CORE_ADDR hirange;
-     CORE_ADDR *addr_found;
-     char *data_found;
+generic_search (int len, char *data, char *mask, CORE_ADDR startaddr,
+               int increment, CORE_ADDR lorange, CORE_ADDR hirange,
+               CORE_ADDR *addr_found, char *data_found)
 {
   int i;
   CORE_ADDR curaddr = startaddr;