* 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.
This commit is contained in:
parent
c266cd0290
commit
d071a26bbc
12 changed files with 23 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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. */
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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 *
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue