aboutsummaryrefslogtreecommitdiff
path: root/gdb/python/py-record.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/python/py-record.h')
-rw-r--r--gdb/python/py-record.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/gdb/python/py-record.h b/gdb/python/py-record.h
index 6eec71e..21ebabb 100644
--- a/gdb/python/py-record.h
+++ b/gdb/python/py-record.h
@@ -29,8 +29,8 @@ struct recpy_record_object
{
PyObject_HEAD
- /* The thread this object refers to. */
- thread_info *thread;
+ /* The thread this object refers to. */
+ thread_info *thread;
/* The current recording method. */
enum record_method method;
@@ -43,8 +43,8 @@ struct recpy_element_object
{
PyObject_HEAD
- /* The thread this object refers to. */
- thread_info *thread;
+ /* The thread this object refers to. */
+ thread_info *thread;
/* The current recording method. */
enum record_method method;
@@ -60,12 +60,12 @@ extern PyTypeObject recpy_insn_type;
extern PyTypeObject recpy_func_type;
/* Create a new gdb.RecordInstruction object. */
-extern PyObject *recpy_insn_new (thread_info *thread, enum record_method method,
- Py_ssize_t number);
+extern PyObject *recpy_insn_new (thread_info *thread,
+ enum record_method method, Py_ssize_t number);
/* Create a new gdb.RecordFunctionSegment object. */
-extern PyObject *recpy_func_new (thread_info *thread, enum record_method method,
- Py_ssize_t number);
+extern PyObject *recpy_func_new (thread_info *thread,
+ enum record_method method, Py_ssize_t number);
/* Create a new gdb.RecordGap object. */
extern PyObject *recpy_gap_new (int reason_code, const char *reason_string,