* value.h (find_function_in_inferior): Add const keyword to
authorJoel Brobecker <brobecker@gnat.com>
Fri, 13 Sep 2002 00:18:33 +0000 (00:18 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Fri, 13 Sep 2002 00:18:33 +0000 (00:18 +0000)
       one of the parameters. Allows us to invoke this function with
       a const char *.
       * valops.c (find_function_in_inferior): Likewise.

gdb/ChangeLog
gdb/valops.c
gdb/value.h

index f51bafb0af032f3726252f3b2e0719e0eed20667..7bd6d01bfba3aabfc3d37e98b0a67aa86ed690ac 100644 (file)
@@ -1,3 +1,10 @@
+2002-09-12  Joel Brobecker  <brobecker@gnat.com>
+
+       * value.h (find_function_in_inferior): Add const keyword to
+       one of the parameters. Allows us to invoke this function with
+       a const char *.
+       * valops.c (find_function_in_inferior): Likewise.
+
 2002-09-12  Joel Brobecker  <brobecker@gnat.com>
 
        * exec.c (xfer_memory): Fix compilation warning with old versions
index 1eeedd32cf7ad755766277dbc82371bf9300ddcb..b2199cbdfbe0dab35521e79a9914fb1e5de76b58 100644 (file)
@@ -95,7 +95,7 @@ int unwind_on_signal_p = 0;
 /* Find the address of function name NAME in the inferior.  */
 
 struct value *
-find_function_in_inferior (char *name)
+find_function_in_inferior (const char *name)
 {
   register struct symbol *sym;
   sym = lookup_symbol (name, 0, VAR_NAMESPACE, 0, NULL);
index 448c222df2137aee937e5b6ce9a6e8afaabefe1a..efabecb880660c44ddef9b170f0e116aa738ed29 100644 (file)
@@ -558,7 +558,7 @@ extern struct value *value_literal_complex (struct value *, struct value *,
 extern void find_rt_vbase_offset (struct type *, struct type *, char *, int,
                                  int *, int *);
 
-extern struct value *find_function_in_inferior (char *);
+extern struct value *find_function_in_inferior (const char *);
 
 extern struct value *value_allocate_space_in_inferior (int);