From 4e7a5ef5a84e2f120a52def047ef671f8dbd7954 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Thu, 13 Aug 2009 18:39:20 +0000 Subject: * varobj.c (update_dynamic_varobj_children): Don't use value_copy. * value.h: (preserve_one_value): Declare. (value_prepend_to_list, value_remove_from_list): Remove. * value.c (preserve_one_value): No longer static. (preserve_values): Call preserve_python_values. (value_prepend_to_list): Remove. (value_remove_from_list): Remove. * python/python.h (values_in_python): Don't declare. (preserve_python_values): Declare. * python/python-value.c (values_in_python): Change type. Move lower. Now static. (struct value_object): Add struct tag. : New fields. (valpy_dealloc): Update. (note_value): New function. (valpy_new): Use value_incref, note_value. (preserve_python_values): New function. (valpy_positive): Don't use value_copy. (value_to_value_object): Use value_incref, note_value. (convert_value_from_python): Update comment. --- gdb/python/python.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/python/python.h') diff --git a/gdb/python/python.h b/gdb/python/python.h index 33b0437..e970180 100644 --- a/gdb/python/python.h +++ b/gdb/python/python.h @@ -22,8 +22,6 @@ #include "value.h" -extern struct value *values_in_python; - void eval_python_from_control_command (struct command_line *); int apply_val_pretty_printer (struct type *type, const gdb_byte *valaddr, @@ -32,4 +30,6 @@ int apply_val_pretty_printer (struct type *type, const gdb_byte *valaddr, const struct value_print_options *options, const struct language_defn *language); +void preserve_python_values (struct objfile *objfile, htab_t copied_types); + #endif /* GDB_PYTHON_H */ -- cgit v1.1