diff options
author | Tom Tromey <tromey@redhat.com> | 2012-11-08 19:38:43 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-11-08 19:38:43 +0000 |
commit | d071a26bbc15eff9beaa74baef98ffdf4ae2653d (patch) | |
tree | bcca53aad762c3100bdd4562f7848c822edc3a8c /gdb | |
parent | c266cd02906e7e066645c4314bca670fabe5be90 (diff) | |
download | binutils-gdb-d071a26bbc15eff9beaa74baef98ffdf4ae2653d.tar.gz |
* python/py-bpevent.c: Include defs.h.
* python/py-continueevent.c: Include defs.h.
* python/py-event.c: Include defs.h.
* python/py-event.h: Don't include defs.h.
* python/py-events.h: Don't include defs.h.
* python/py-evts.c: Include defs.h.
* python/py-exitedevent.c: Include defs.h.
* python/py-newobjfileevent.c: Include defs.h.
* python/py-signalevent.c: Include defs.h.
* python/py-stopevent.c: Include defs.h.
* python/py-threadevent.c: Include defs.h.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 14 | ||||
-rw-r--r-- | gdb/python/py-bpevent.c | 1 | ||||
-rw-r--r-- | gdb/python/py-continueevent.c | 1 | ||||
-rw-r--r-- | gdb/python/py-event.c | 1 | ||||
-rw-r--r-- | gdb/python/py-event.h | 1 | ||||
-rw-r--r-- | gdb/python/py-events.h | 1 | ||||
-rw-r--r-- | gdb/python/py-evts.c | 1 | ||||
-rw-r--r-- | gdb/python/py-exitedevent.c | 1 | ||||
-rw-r--r-- | gdb/python/py-newobjfileevent.c | 1 | ||||
-rw-r--r-- | gdb/python/py-signalevent.c | 1 | ||||
-rw-r--r-- | gdb/python/py-stopevent.c | 1 | ||||
-rw-r--r-- | gdb/python/py-threadevent.c | 1 |
12 files changed, 23 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e8ac0900a84..64f0dd8bb2b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,17 @@ +2012-11-08 Tom Tromey <tromey@redhat.com> + + * python/py-bpevent.c: Include defs.h. + * python/py-continueevent.c: Include defs.h. + * python/py-event.c: Include defs.h. + * python/py-event.h: Don't include defs.h. + * python/py-events.h: Don't include defs.h. + * python/py-evts.c: Include defs.h. + * python/py-exitedevent.c: Include defs.h. + * python/py-newobjfileevent.c: Include defs.h. + * python/py-signalevent.c: Include defs.h. + * python/py-stopevent.c: Include defs.h. + * python/py-threadevent.c: Include defs.h. + 2012-11-08 Pierre Muller <muller@sourceware.org> * update-web-ari.sh (print_heading): Add number of files diff --git a/gdb/python/py-bpevent.c b/gdb/python/py-bpevent.c index 8e4afe47e21..fb81d30cf96 100644 --- a/gdb/python/py-bpevent.c +++ b/gdb/python/py-bpevent.c @@ -17,6 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include "defs.h" #include "py-stopevent.h" static PyTypeObject breakpoint_event_object_type; diff --git a/gdb/python/py-continueevent.c b/gdb/python/py-continueevent.c index 2a1524e4c47..7e16c3be46b 100644 --- a/gdb/python/py-continueevent.c +++ b/gdb/python/py-continueevent.c @@ -17,6 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include "defs.h" #include "py-event.h" static PyTypeObject continue_event_object_type; diff --git a/gdb/python/py-event.c b/gdb/python/py-event.c index 7c88fcd1b1e..793f52cd858 100644 --- a/gdb/python/py-event.c +++ b/gdb/python/py-event.c @@ -17,6 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include "defs.h" #include "py-event.h" void diff --git a/gdb/python/py-event.h b/gdb/python/py-event.h index e54c17a503b..aea1b57a3f3 100644 --- a/gdb/python/py-event.h +++ b/gdb/python/py-event.h @@ -20,7 +20,6 @@ #ifndef GDB_PY_EVENT_H #define GDB_PY_EVENT_H -#include "defs.h" #include "py-events.h" #include "command.h" #include "python-internal.h" diff --git a/gdb/python/py-events.h b/gdb/python/py-events.h index dbf239423e2..86a6d694de1 100644 --- a/gdb/python/py-events.h +++ b/gdb/python/py-events.h @@ -20,7 +20,6 @@ #ifndef GDB_PY_EVENTS_H #define GDB_PY_EVENTS_H -#include "defs.h" #include "command.h" #include "python-internal.h" #include "inferior.h" diff --git a/gdb/python/py-evts.c b/gdb/python/py-evts.c index 38cd128d522..644857d10cb 100644 --- a/gdb/python/py-evts.c +++ b/gdb/python/py-evts.c @@ -17,6 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include "defs.h" #include "py-events.h" /* Initialize python events. */ diff --git a/gdb/python/py-exitedevent.c b/gdb/python/py-exitedevent.c index d062f5f736c..d9aa95f7025 100644 --- a/gdb/python/py-exitedevent.c +++ b/gdb/python/py-exitedevent.c @@ -17,6 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include "defs.h" #include "py-event.h" static PyTypeObject exited_event_object_type; diff --git a/gdb/python/py-newobjfileevent.c b/gdb/python/py-newobjfileevent.c index 46b26abff26..749dced282d 100644 --- a/gdb/python/py-newobjfileevent.c +++ b/gdb/python/py-newobjfileevent.c @@ -17,6 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include "defs.h" #include "py-event.h" static PyTypeObject new_objfile_event_object_type; diff --git a/gdb/python/py-signalevent.c b/gdb/python/py-signalevent.c index 40da31aa1bc..b7fd9d259a6 100644 --- a/gdb/python/py-signalevent.c +++ b/gdb/python/py-signalevent.c @@ -17,6 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include "defs.h" #include "py-stopevent.h" static PyTypeObject signal_event_object_type; diff --git a/gdb/python/py-stopevent.c b/gdb/python/py-stopevent.c index d351915951f..6e243f94b03 100644 --- a/gdb/python/py-stopevent.c +++ b/gdb/python/py-stopevent.c @@ -17,6 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include "defs.h" #include "py-stopevent.h" PyObject * diff --git a/gdb/python/py-threadevent.c b/gdb/python/py-threadevent.c index d5139450c6c..a735a0a06e5 100644 --- a/gdb/python/py-threadevent.c +++ b/gdb/python/py-threadevent.c @@ -15,6 +15,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include "defs.h" #include "py-event.h" /* thread events can either be thread specific or process wide. If gdb is |