diff options
Diffstat (limited to 'gdb/python')
-rw-r--r-- | gdb/python/py-event.h | 6 | ||||
-rw-r--r-- | gdb/python/py-events.h | 6 | ||||
-rw-r--r-- | gdb/python/py-instruction.h | 6 | ||||
-rw-r--r-- | gdb/python/py-record-btrace.h | 6 | ||||
-rw-r--r-- | gdb/python/py-record-full.h | 6 | ||||
-rw-r--r-- | gdb/python/py-record.h | 6 | ||||
-rw-r--r-- | gdb/python/py-ref.h | 6 | ||||
-rw-r--r-- | gdb/python/py-stopevent.h | 6 | ||||
-rw-r--r-- | gdb/python/python-internal.h | 6 | ||||
-rw-r--r-- | gdb/python/python.h | 6 |
10 files changed, 30 insertions, 30 deletions
diff --git a/gdb/python/py-event.h b/gdb/python/py-event.h index 07b99d2..fb8057c 100644 --- a/gdb/python/py-event.h +++ b/gdb/python/py-event.h @@ -17,8 +17,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef GDB_PY_EVENT_H -#define GDB_PY_EVENT_H +#ifndef PYTHON_PY_EVENT_H +#define PYTHON_PY_EVENT_H #include "py-events.h" #include "command.h" @@ -83,4 +83,4 @@ extern int evpy_add_attribute (PyObject *event, int gdbpy_initialize_event_generic (PyTypeObject *type, const char *name) CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION; -#endif /* GDB_PY_EVENT_H */ +#endif /* PYTHON_PY_EVENT_H */ diff --git a/gdb/python/py-events.h b/gdb/python/py-events.h index a5501c3..7d357ad 100644 --- a/gdb/python/py-events.h +++ b/gdb/python/py-events.h @@ -17,8 +17,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef GDB_PY_EVENTS_H -#define GDB_PY_EVENTS_H +#ifndef PYTHON_PY_EVENTS_H +#define PYTHON_PY_EVENTS_H #include "command.h" #include "python-internal.h" @@ -54,4 +54,4 @@ extern events_object gdb_py_events; extern eventregistry_object *create_eventregistry_object (void); extern int evregpy_no_listeners_p (eventregistry_object *registry); -#endif /* GDB_PY_EVENTS_H */ +#endif /* PYTHON_PY_EVENTS_H */ diff --git a/gdb/python/py-instruction.h b/gdb/python/py-instruction.h index eb19208..d0d5306 100644 --- a/gdb/python/py-instruction.h +++ b/gdb/python/py-instruction.h @@ -17,8 +17,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef GDB_PY_INSTRUCTION_H -#define GDB_PY_INSTRUCTION_H +#ifndef PYTHON_PY_INSTRUCTION_H +#define PYTHON_PY_INSTRUCTION_H #include "python-internal.h" @@ -27,4 +27,4 @@ (str) and "size" (int) that must be overriden by sub classes. */ extern PyTypeObject py_insn_type; -#endif /* GDB_PY_INSTRUCTION_H */ +#endif /* PYTHON_PY_INSTRUCTION_H */ diff --git a/gdb/python/py-record-btrace.h b/gdb/python/py-record-btrace.h index d6d4a74..1d8560d 100644 --- a/gdb/python/py-record-btrace.h +++ b/gdb/python/py-record-btrace.h @@ -17,8 +17,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef GDB_PY_RECORD_BTRACE_H -#define GDB_PY_RECORD_BTRACE_H +#ifndef PYTHON_PY_RECORD_BTRACE_H +#define PYTHON_PY_RECORD_BTRACE_H #include "python-internal.h" @@ -88,4 +88,4 @@ extern PyObject *recpy_bt_func_prev (PyObject *self, void *closure); /* Implementation of RecordFunctionSegment.next [RecordFunctionSegment]. */ extern PyObject *recpy_bt_func_next (PyObject *self, void *closure); -#endif /* GDB_PY_RECORD_BTRACE_H */ +#endif /* PYTHON_PY_RECORD_BTRACE_H */ diff --git a/gdb/python/py-record-full.h b/gdb/python/py-record-full.h index d6529df..e002441 100644 --- a/gdb/python/py-record-full.h +++ b/gdb/python/py-record-full.h @@ -17,8 +17,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef GDB_PY_RECORD_FULL_H -#define GDB_PY_RECORD_FULL_H +#ifndef PYTHON_PY_RECORD_FULL_H +#define PYTHON_PY_RECORD_FULL_H #include "python-internal.h" @@ -28,4 +28,4 @@ extern PyObject *recpy_full_method (PyObject *self, void *value); /* Implementation of record.format [str]. */ extern PyObject *recpy_full_format (PyObject *self, void *value); -#endif /* GDB_PY_RECORD_FULL_H */ +#endif /* PYTHON_PY_RECORD_FULL_H */ diff --git a/gdb/python/py-record.h b/gdb/python/py-record.h index 5d838fb..74da1bd 100644 --- a/gdb/python/py-record.h +++ b/gdb/python/py-record.h @@ -17,8 +17,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef GDB_PY_RECORD_H -#define GDB_PY_RECORD_H +#ifndef PYTHON_PY_RECORD_H +#define PYTHON_PY_RECORD_H #include "inferior.h" #include "python-internal.h" @@ -71,4 +71,4 @@ extern PyObject *recpy_func_new (thread_info *thread, enum record_method method, extern PyObject *recpy_gap_new (int reason_code, const char *reason_string, Py_ssize_t number); -#endif /* GDB_PY_RECORD_H */ +#endif /* PYTHON_PY_RECORD_H */ diff --git a/gdb/python/py-ref.h b/gdb/python/py-ref.h index bf7a827..15280f6 100644 --- a/gdb/python/py-ref.h +++ b/gdb/python/py-ref.h @@ -17,8 +17,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef GDB_PYTHON_REF_H -#define GDB_PYTHON_REF_H +#ifndef PYTHON_PY_REF_H +#define PYTHON_PY_REF_H #include "common/gdb_ref_ptr.h" @@ -42,4 +42,4 @@ struct gdbpy_ref_policy template<typename T = PyObject> using gdbpy_ref = gdb::ref_ptr<T, gdbpy_ref_policy<T>>; -#endif /* GDB_PYTHON_REF_H */ +#endif /* PYTHON_PY_REF_H */ diff --git a/gdb/python/py-stopevent.h b/gdb/python/py-stopevent.h index f2dffbe..c6b7a7b 100644 --- a/gdb/python/py-stopevent.h +++ b/gdb/python/py-stopevent.h @@ -17,8 +17,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef GDB_PY_STOPEVENT_H -#define GDB_PY_STOPEVENT_H +#ifndef PYTHON_PY_STOPEVENT_H +#define PYTHON_PY_STOPEVENT_H #include "py-event.h" @@ -33,4 +33,4 @@ extern gdbpy_ref<> create_breakpoint_event_object (PyObject *breakpoint_list, extern gdbpy_ref<> create_signal_event_object (enum gdb_signal stop_signal); -#endif /* GDB_PY_STOPEVENT_H */ +#endif /* PYTHON_PY_STOPEVENT_H */ diff --git a/gdb/python/python-internal.h b/gdb/python/python-internal.h index b157d22..3cb9ebc 100644 --- a/gdb/python/python-internal.h +++ b/gdb/python/python-internal.h @@ -17,8 +17,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef GDB_PYTHON_INTERNAL_H -#define GDB_PYTHON_INTERNAL_H +#ifndef PYTHON_PYTHON_INTERNAL_H +#define PYTHON_PYTHON_INTERNAL_H #include "extension.h" #include "extension-priv.h" @@ -801,4 +801,4 @@ struct varobj; struct varobj_iter *py_varobj_get_iterator (struct varobj *var, PyObject *printer); -#endif /* GDB_PYTHON_INTERNAL_H */ +#endif /* PYTHON_PYTHON_INTERNAL_H */ diff --git a/gdb/python/python.h b/gdb/python/python.h index 2c02b95..10cd90d 100644 --- a/gdb/python/python.h +++ b/gdb/python/python.h @@ -17,8 +17,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef GDB_PYTHON_H -#define GDB_PYTHON_H +#ifndef PYTHON_PYTHON_H +#define PYTHON_PYTHON_H #include "extension.h" @@ -28,4 +28,4 @@ extern const struct extension_language_defn extension_language_python; /* Command element for the 'python' command. */ extern cmd_list_element *python_cmd_element; -#endif /* GDB_PYTHON_H */ +#endif /* PYTHON_PYTHON_H */ |