diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2007-10-24 21:15:35 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2007-10-24 21:15:35 +0000 |
commit | 734598d9214a617704a38fc59ad1643e15d63cc0 (patch) | |
tree | 6afa821807e15ba11beaf017b82cbaa4a2dec91e /gdb/solib-irix.h | |
parent | d542061a791651ada2064bcc23f62ec142acc628 (diff) | |
download | gdb-734598d9214a617704a38fc59ad1643e15d63cc0.zip gdb-734598d9214a617704a38fc59ad1643e15d63cc0.tar.gz gdb-734598d9214a617704a38fc59ad1643e15d63cc0.tar.bz2 |
* mips-irix-tdep.c: Include "gdb_string.h", "solib.h", "solib-irix.h".
(mips_irix_init_abi): Call set_solib_ops.
* solib-irix.c: Include "solib.h" and "solib-irix.h".
(irix_so_ops): Make global.
(_initialize_irix_solib): Do not set current_target_so_ops.
* solib-irix.h: New file.
* Makefile.in: Update dependencies.
Diffstat (limited to 'gdb/solib-irix.h')
-rw-r--r-- | gdb/solib-irix.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gdb/solib-irix.h b/gdb/solib-irix.h new file mode 100644 index 0000000..5fe8014 --- /dev/null +++ b/gdb/solib-irix.h @@ -0,0 +1,26 @@ +/* Handle shared libraries for GDB, the GNU Debugger. + + Copyright (C) 2007 Free Software Foundation, Inc. + + This file is part of GDB. + + 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/>. */ + +#ifndef SOLIB_IRIX_H +#define SOLIB_IRIX_H + +struct target_so_ops; +extern struct target_so_ops irix_so_ops; + +#endif /* solib-irix.h */ |