diff options
author | Tom Tromey <tromey@redhat.com> | 2011-06-24 19:47:37 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2011-06-24 19:47:37 +0000 |
commit | ddd49eeec46ac948def99330a62f1ce023a0d356 (patch) | |
tree | e5601b9bfd10ae4594e15548ec966ad1acfdd81f /gdb/ChangeLog | |
parent | 5998129b54923c51b277ab385fbb619189525098 (diff) | |
download | gdb-ddd49eeec46ac948def99330a62f1ce023a0d356.zip gdb-ddd49eeec46ac948def99330a62f1ce023a0d356.tar.gz gdb-ddd49eeec46ac948def99330a62f1ce023a0d356.tar.bz2 |
* varobj.c (update_dynamic_varobj_children): Make 'name' const.
* symtab.h (lookup_struct, lookup_union, lookup_enum): Update.
* python/python.c (gdbpy_parameter): Make 'arg' const.
(execute_gdb_command): Likewise.
(gdbpy_decode_line): Likewise. Copy it.
(gdbpy_parse_and_eval): Make 'expr_string' const. Copy it.
(gdbpy_write): Make 'arg' const.
* python/py-type.c (typy_lookup_typename): Make 'type_name'
const.
(gdbpy_lookup_type): Likewise.
* python/py-prettyprint.c (print_children): Make 'name' const.
* python/py-param.c (parmpy_init): Make 'name' const. Copy it.
* python/py-inferior.c (infpy_write_memory): Make 'buf_len' a
Py_ssize_t.
* python/py-function.c (fnpy_init): Make 'name' const.
* python/py-cmd.c (cmdpy_init): Make 'name' const. Copy it.
(gdbpy_string_to_argv): Make 'input' const.
* python/py-breakpoint.c (bppy_init): Make 'spec' const. Copy
it.
* gdbtypes.h (lookup_typename): Update.
* gdbtypes.c (lookup_typename): Make 'name' const.
(lookup_struct): Likewise.
(lookup_union): Likewise.
(lookup_enum): Likewise.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a89cf90..b10ce0f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,32 @@ 2011-06-24 Tom Tromey <tromey@redhat.com> + * varobj.c (update_dynamic_varobj_children): Make 'name' const. + * symtab.h (lookup_struct, lookup_union, lookup_enum): Update. + * python/python.c (gdbpy_parameter): Make 'arg' const. + (execute_gdb_command): Likewise. + (gdbpy_decode_line): Likewise. Copy it. + (gdbpy_parse_and_eval): Make 'expr_string' const. Copy it. + (gdbpy_write): Make 'arg' const. + * python/py-type.c (typy_lookup_typename): Make 'type_name' + const. + (gdbpy_lookup_type): Likewise. + * python/py-prettyprint.c (print_children): Make 'name' const. + * python/py-param.c (parmpy_init): Make 'name' const. Copy it. + * python/py-inferior.c (infpy_write_memory): Make 'buf_len' a + Py_ssize_t. + * python/py-function.c (fnpy_init): Make 'name' const. + * python/py-cmd.c (cmdpy_init): Make 'name' const. Copy it. + (gdbpy_string_to_argv): Make 'input' const. + * python/py-breakpoint.c (bppy_init): Make 'spec' const. Copy + it. + * gdbtypes.h (lookup_typename): Update. + * gdbtypes.c (lookup_typename): Make 'name' const. + (lookup_struct): Likewise. + (lookup_union): Likewise. + (lookup_enum): Likewise. + +2011-06-24 Tom Tromey <tromey@redhat.com> + * Makefile.in (HFILES_NO_SRCDIR): Add "common/" to gdb_thread_db.h. Move all common/ entries to be together. (TAGS): Don't depend on DEPFILES. |