summaryrefslogtreecommitdiff
path: root/gdb/valprint.h
diff options
context:
space:
mode:
authorThiago Jung Bauermann <bauerman@br.ibm.com>2009-02-05 12:16:24 +0000
committerThiago Jung Bauermann <bauerman@br.ibm.com>2009-02-05 12:16:24 +0000
commitd01d94ef3114c8490d919d04efb3ed9772e8c2e6 (patch)
treec792c71c35701570d57fe418b7f9c1762c62ab82 /gdb/valprint.h
parent7d5dabc5616e1677a35e38d0813caa04aba3419d (diff)
downloadgdb-d01d94ef3114c8490d919d04efb3ed9772e8c2e6.tar.gz
2009-02-05 Thiago Jung Bauermann <bauerman@br.ibm.com>
* language.h (language_dfn): Add la_get_string member. (LA_GET_STRING): New macro. (default_get_string): New prototype. * language.c (default_get_string): New function. (unknown_language_defn, auto_language_defn, local_language_defn): Use default_get_string for la_get_string. * c-lang.c (c_get_string): New function. (c_language_defn, cplus_language_defn, asm_language_defn): Use c_get_string for la_get_string. (minimal_language_defn): Likewise * ada-lang.c (ada_language_defn): Likewise. * f-lang.c (f_language_defn): Use default_get_string for la_get_string. * jv-lang.c (java_language_defn): Likewise. * m2-lang.c (m2_language_defn): Likewise. * objc-lang.c (objc_language_defn): Likewise. * p-lang.c (p_language_defn): Likewise. * scm-lang.c (scm_language_defn): Likewise. * typeprint.c (type_to_string): New function. * value.h (type_to_string): New prototype. * valprint.c (val_print_string): Factor out code for reading string from the inferior into its own function. Put 2 spaces after period in comments. (read_string): New function. * valprint.h (read_string): New prototype.
Diffstat (limited to 'gdb/valprint.h')
-rw-r--r--gdb/valprint.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/valprint.h b/gdb/valprint.h
index 6e85bb4fc33..8b65af68dc7 100644
--- a/gdb/valprint.h
+++ b/gdb/valprint.h
@@ -136,4 +136,7 @@ extern void print_hex_chars (struct ui_file *, const gdb_byte *,
extern void print_char_chars (struct ui_file *, const gdb_byte *,
unsigned int, enum bfd_endian);
+
+int read_string (CORE_ADDR addr, int len, int width, unsigned int fetchlimit,
+ gdb_byte **buffer, int *bytes_read);
#endif