diff options
author | Kevin Pouget <kpouget@sourceware.org> | 2011-10-07 08:39:57 +0000 |
---|---|---|
committer | Kevin Pouget <kpouget@sourceware.org> | 2011-10-07 08:39:57 +0000 |
commit | 01b71697807be429fbd5d960e4228c04837024e3 (patch) | |
tree | 9ed28d99d07a7465f7983812fc37679fd5576744 /gdb/testsuite | |
parent | bd054e06e3733e2041a16ccae8be707c0e91868f (diff) | |
download | gdb-01b71697807be429fbd5d960e4228c04837024e3.zip gdb-01b71697807be429fbd5d960e4228c04837024e3.tar.gz gdb-01b71697807be429fbd5d960e4228c04837024e3.tar.bz2 |
Add missing files to previous commit (Allow Python notification of new object-file loadings.)
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/gdb.python/py-events-shlib.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.python/py-events-shlib.c b/gdb/testsuite/gdb.python/py-events-shlib.c new file mode 100644 index 0000000..2a17bbf --- /dev/null +++ b/gdb/testsuite/gdb.python/py-events-shlib.c @@ -0,0 +1,20 @@ +/* This testcase is part of GDB, the GNU debugger. + + Copyright 2011 Free Software Foundation, Inc. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. */ + + +void do_nothing (void) {} + |