From 4cb0213de564968ca92727b581a0e51683d0552e Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Thu, 28 Nov 2013 14:54:32 -0800 Subject: 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. --- gdb/python/python.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/python/python.c') 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 " \ -- cgit v1.1