diff options
author | Doug Evans <xdje42@gmail.com> | 2013-11-28 14:54:32 -0800 |
---|---|---|
committer | Doug Evans <xdje42@gmail.com> | 2013-11-28 14:54:32 -0800 |
commit | 4cb0213de564968ca92727b581a0e51683d0552e (patch) | |
tree | f4ba357a40354859de5616170a7cf53f70c73324 /gdb/breakpoint.h | |
parent | d729aae0fd65e6b9b85ac59a42df8f9631bd6daa (diff) | |
download | gdb-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/breakpoint.h')
-rw-r--r-- | gdb/breakpoint.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h index b2ff02c..be0658f 100644 --- a/gdb/breakpoint.h +++ b/gdb/breakpoint.h @@ -28,7 +28,7 @@ struct value; struct block; -struct breakpoint_object; +struct gdbpy_breakpoint_object; struct get_number_or_range_state; struct thread_info; struct bpstats; @@ -737,8 +737,8 @@ struct breakpoint Python object that has been associated with this breakpoint. This is always NULL for a GDB that is not script enabled. It can sometimes be NULL for enabled GDBs as not all breakpoint - types are tracked by the Python scripting API. */ - struct breakpoint_object *py_bp_object; + types are tracked by the scripting language API. */ + struct gdbpy_breakpoint_object *py_bp_object; }; /* An instance of this type is used to represent a watchpoint. It |