1 /* Handle shared libraries for GDB, the GNU Debugger.
3 Free Software Foundation, Inc.
5 This file is part of GDB.
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 2 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* Critical offsets and sizes which describe struct r_debug and
23 struct link_map on SVR4-like targets. All offsets and sizes are
24 in bytes unless otherwise specified. */
26 struct link_map_offsets
28 /* Size of struct r_debug (or equivalent), or at least enough of it to
29 be able to obtain the r_map field. */
32 /* Offset to the r_map field in struct r_debug. */
35 /* Size of the r_map field in struct r_debug. */
38 /* Size of struct link_map (or equivalent), or at least enough of it
39 to be able to obtain the fields below. */
42 /* Offset to l_addr field in struct link_map. */
45 /* Size of l_addr field in struct link_map. */
48 /* Offset to l_next field in struct link_map. */
51 /* Size of l_next field in struct link_map. */
54 /* Offset to l_prev field in struct link_map. */
57 /* Size of l_prev field in struct link_map. */
60 /* Offset to l_name field in struct link_map. */
63 /* Size of l_name field in struct link_map. */
67 #ifndef SVR4_FETCH_LINK_MAP_OFFSETS
68 extern struct link_map_offsets
*default_svr4_fetch_link_map_offsets (void);
69 #define SVR4_FETCH_LINK_MAP_OFFSETS() default_svr4_fetch_link_map_offsets ()