aboutsummaryrefslogtreecommitdiff
path: root/gdb/python/python.c
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.c
parentd729aae0fd65e6b9b85ac59a42df8f9631bd6daa (diff)
downloadgdb-4cb0213de564968ca92727b581a0e51683d0552e.zip
gdb-4cb0213de564968ca92727b581a0e51683d0552e.tar.gz
gdb-4cb0213de564968ca92727b581a0e51683d0552e.tar.bz2
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.c')
-rw-r--r--gdb/python/python.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/python/python.c b/gdb/python/python.c
index 7cdf8a7..1dfe0ac 100644
--- a/gdb/python/python.c
+++ b/gdb/python/python.c
@@ -1395,7 +1395,7 @@ source_python_script (FILE *file, const char *filename)
}
int
-gdbpy_should_stop (struct breakpoint_object *bp_obj)
+gdbpy_should_stop (struct gdbpy_breakpoint_object *bp_obj)
{
internal_error (__FILE__, __LINE__,
_("gdbpy_should_stop called when Python scripting is " \
@@ -1403,7 +1403,7 @@ gdbpy_should_stop (struct breakpoint_object *bp_obj)
}
int
-gdbpy_breakpoint_has_py_cond (struct breakpoint_object *bp_obj)
+gdbpy_breakpoint_has_py_cond (struct gdbpy_breakpoint_object *bp_obj)
{
internal_error (__FILE__, __LINE__,
_("gdbpy_breakpoint_has_py_cond called when Python " \