This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[COMMITTED PATCH] python/py-infthread.c: Whitespace fixes.


Hi.
The easiest way to adhere to coding standards is to not try to get
creative or clever, and just follow what's already there.
Alas this simple algorithm breaks down then the entire file is broken.
[And I can't fault new contributors for taking what they see in the file as
the coding standard - so it's important to keep the source base clean.]

Committed.

2014-12-02  Doug Evans  <dje@google.com>

	* python/py-infthread.c: Whitespace fixes.

diff --git a/gdb/python/py-infthread.c b/gdb/python/py-infthread.c
index 1399322..7fa2ca8 100644
--- a/gdb/python/py-infthread.c
+++ b/gdb/python/py-infthread.c
@@ -36,8 +36,6 @@ static PyTypeObject thread_object_type
       }								\
   } while (0)
 
-
-
 thread_object *
 create_thread_object (struct thread_info *tp)
 {
@@ -53,8 +51,6 @@ create_thread_object (struct thread_info *tp)
   return thread_obj;
 }
 
-
-
 static void
 thpy_dealloc (PyObject *self)
 {
@@ -131,6 +127,7 @@ thpy_get_num (PyObject *self, void *closure)
 
 /* Getter for InferiorThread.ptid  -> (pid, lwp, tid).
    Returns a tuple with the thread's ptid components.  */
+
 static PyObject *
 thpy_get_ptid (PyObject *self, void *closure)
 {
@@ -158,6 +155,7 @@ thpy_get_ptid (PyObject *self, void *closure)
 
 /* Implementation of InferiorThread.switch ().
    Makes this the GDB selected thread.  */
+
 static PyObject *
 thpy_switch (PyObject *self, PyObject *args)
 {
@@ -177,6 +175,7 @@ thpy_switch (PyObject *self, PyObject *args)
 
 /* Implementation of InferiorThread.is_stopped () -> Boolean.
    Return whether the thread is stopped.  */
+
 static PyObject *
 thpy_is_stopped (PyObject *self, PyObject *args)
 {
@@ -192,6 +191,7 @@ thpy_is_stopped (PyObject *self, PyObject *args)
 
 /* Implementation of InferiorThread.is_running () -> Boolean.
    Return whether the thread is running.  */
+
 static PyObject *
 thpy_is_running (PyObject *self, PyObject *args)
 {
@@ -207,6 +207,7 @@ thpy_is_running (PyObject *self, PyObject *args)
 
 /* Implementation of InferiorThread.is_exited () -> Boolean.
    Return whether the thread is exited.  */
+
 static PyObject *
 thpy_is_exited (PyObject *self, PyObject *args)
 {
@@ -237,6 +238,7 @@ thpy_is_valid (PyObject *self, PyObject *args)
 
 /* Implementation of gdb.selected_thread () -> gdb.InferiorThread.
    Returns the selected thread object.  */
+
 PyObject *
 gdbpy_selected_thread (PyObject *self, PyObject *args)
 {
@@ -252,8 +254,6 @@ gdbpy_selected_thread (PyObject *self, PyObject *args)
   Py_RETURN_NONE;
 }
 
-
-
 int
 gdbpy_initialize_thread (void)
 {
@@ -264,8 +264,6 @@ gdbpy_initialize_thread (void)
 				 (PyObject *) &thread_object_type);
 }
 
-
-
 static PyGetSetDef thread_object_getset[] =
 {
   { "name", thpy_get_name, thpy_set_name,


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]