summaryrefslogtreecommitdiff
path: root/gdb/python/python.h
diff options
context:
space:
mode:
authorDoug Evans <xdje42@gmail.com>2013-11-28 14:54:32 -0800
committerDoug Evans <xdje42@gmail.com>2013-11-28 14:54:32 -0800
commit4cb0213de564968ca92727b581a0e51683d0552e (patch)
treef4ba357a40354859de5616170a7cf53f70c73324 /gdb/python/python.h
parentd729aae0fd65e6b9b85ac59a42df8f9631bd6daa (diff)
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.
Diffstat (limited to 'gdb/python/python.h')
-rw-r--r--gdb/python/python.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/python/python.h b/gdb/python/python.h
index 1a1e5c2334..047fb4c9f2 100644
--- a/gdb/python/python.h
+++ b/gdb/python/python.h
@@ -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);