| Index: gdb/python/python-internal.h
|
| diff --git a/gdb/python/python-internal.h b/gdb/python/python-internal.h
|
| index 328e5d87878e842650d4576860fa05eba2f9daad..bae61c28da821c7541d9ccbab9d977719c320bdd 100644
|
| --- a/gdb/python/python-internal.h
|
| +++ b/gdb/python/python-internal.h
|
| @@ -121,6 +121,7 @@ extern PyTypeObject event_object_type;
|
| extern PyTypeObject events_object_type;
|
| extern PyTypeObject stop_event_object_type;
|
| extern PyTypeObject breakpoint_object_type;
|
| +extern PyTypeObject frame_object_type;
|
|
|
| typedef struct breakpoint_object
|
| {
|
| @@ -289,8 +290,8 @@ extern const struct language_defn *python_language;
|
|
|
| void gdbpy_print_stack (void);
|
|
|
| -void source_python_script_for_objfile (struct objfile *objfile,
|
| - const char *file);
|
| +void source_python_script_for_objfile (struct objfile *objfile, FILE *file,
|
| + const char *filename);
|
|
|
| PyObject *python_string_to_unicode (PyObject *obj);
|
| char *unicode_to_target_string (PyObject *unicode_str);
|
| @@ -341,4 +342,6 @@ PyObject *gdb_py_object_from_longest (LONGEST l);
|
| PyObject *gdb_py_object_from_ulongest (ULONGEST l);
|
| int gdb_py_int_as_long (PyObject *, long *);
|
|
|
| +PyObject *gdb_py_generic_dict (PyObject *self, void *closure);
|
| +
|
| #endif /* GDB_PYTHON_INTERNAL_H */
|
|
|