daily update
[deliverable/binutils-gdb.git] / gdb / python / py-evts.c
CommitLineData
c17a9e46
HZ
1/* Python interface to inferior events.
2
28e7fd62 3 Copyright (C) 2009-2013 Free Software Foundation, Inc.
c17a9e46
HZ
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
d071a26b 20#include "defs.h"
c17a9e46
HZ
21#include "py-events.h"
22
9a27f2c6
PK
23#ifdef IS_PY3K
24static struct PyModuleDef EventModuleDef =
25{
26 PyModuleDef_HEAD_INIT,
27 "gdb.events",
28 NULL,
29 -1,
30 NULL,
31 NULL,
32 NULL,
33 NULL,
34 NULL
35};
36#endif
37
c17a9e46
HZ
38/* Initialize python events. */
39
5d153bd1 40static int CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION
c17a9e46
HZ
41add_new_registry (eventregistry_object **registryp, char *name)
42{
aa36459a
TT
43 int result;
44
c17a9e46
HZ
45 *registryp = create_eventregistry_object ();
46
47 if (*registryp == NULL)
aa36459a 48 return -1;
c17a9e46 49
aa36459a
TT
50 return gdb_pymodule_addobject (gdb_py_events.module,
51 name,
52 (PyObject *)(*registryp));
c17a9e46
HZ
53}
54
999633ed 55int
eeae04df 56gdbpy_initialize_py_events (void)
c17a9e46 57{
9a27f2c6
PK
58#ifdef IS_PY3K
59 gdb_py_events.module = PyModule_Create (&EventModuleDef);
60#else
c17a9e46 61 gdb_py_events.module = Py_InitModule ("events", NULL);
9a27f2c6 62#endif
c17a9e46
HZ
63
64 if (!gdb_py_events.module)
999633ed 65 return -1;
c17a9e46
HZ
66
67 if (add_new_registry (&gdb_py_events.stop, "stop") < 0)
999633ed 68 return -1;
c17a9e46
HZ
69
70 if (add_new_registry (&gdb_py_events.cont, "cont") < 0)
999633ed 71 return -1;
c17a9e46
HZ
72
73 if (add_new_registry (&gdb_py_events.exited, "exited") < 0)
999633ed 74 return -1;
c17a9e46 75
20c168b5 76 if (add_new_registry (&gdb_py_events.new_objfile, "new_objfile") < 0)
999633ed 77 return -1;
20c168b5 78
aa36459a
TT
79 if (gdb_pymodule_addobject (gdb_module,
80 "events",
81 (PyObject *) gdb_py_events.module) < 0)
999633ed 82 return -1;
c17a9e46 83
999633ed 84 return 0;
c17a9e46 85}
This page took 0.283559 seconds and 4 git commands to generate.