mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-24 18:57:01 +08:00
Rename breakpoint_object to gdbpy_breakpoint_object.
* breakpoint.h (gdbpy_breakpoint_object): Renamed from breakpoint_object. All uses updated. * python/python-internal.h (gdbpy_breakpoint_object): Renamed from breakpoint_object. All uses updated. * python.c (*): All uses of breakpoint_object updated. * python.h (*): All uses of breakpoint_object updated. * python/py-breakpoint.c (*): All uses of breakpoint_object updated. * python/py-finishbreakpoint.c (*): Ditto.
This commit is contained in:
@ -23,7 +23,7 @@
|
||||
#include "value.h"
|
||||
#include "mi/mi-cmds.h"
|
||||
|
||||
struct breakpoint_object;
|
||||
struct gdbpy_breakpoint_object;
|
||||
|
||||
/* The suffix of per-objfile scripts to auto-load.
|
||||
E.g. When the program loads libfoo.so, look for libfoo-gdb.py. */
|
||||
@ -111,9 +111,9 @@ void preserve_python_values (struct objfile *objfile, htab_t copied_types);
|
||||
|
||||
void gdbpy_load_auto_scripts_for_objfile (struct objfile *objfile);
|
||||
|
||||
int gdbpy_should_stop (struct breakpoint_object *bp_obj);
|
||||
int gdbpy_should_stop (struct gdbpy_breakpoint_object *bp_obj);
|
||||
|
||||
int gdbpy_breakpoint_has_py_cond (struct breakpoint_object *bp_obj);
|
||||
int gdbpy_breakpoint_has_py_cond (struct gdbpy_breakpoint_object *bp_obj);
|
||||
|
||||
void *start_type_printers (void);
|
||||
|
||||
|
Reference in New Issue
Block a user