xref: /dragonfly/contrib/gdb-7/include/elf/vxworks.h (revision 86d7f5d3)
1*86d7f5d3SJohn Marino /* VxWorks ELF support for BFD.
2*86d7f5d3SJohn Marino    Copyright 2007, 2010
3*86d7f5d3SJohn Marino    Free Software Foundation, Inc.
4*86d7f5d3SJohn Marino 
5*86d7f5d3SJohn Marino    Contributed by Nathan Sidwell <nathan@codesourcery.com>
6*86d7f5d3SJohn Marino 
7*86d7f5d3SJohn Marino    This file is part of BFD, the Binary File Descriptor library.
8*86d7f5d3SJohn Marino 
9*86d7f5d3SJohn Marino    This program is free software; you can redistribute it and/or modify
10*86d7f5d3SJohn Marino    it under the terms of the GNU General Public License as published by
11*86d7f5d3SJohn Marino    the Free Software Foundation; either version 3 of the License, or
12*86d7f5d3SJohn Marino    (at your option) any later version.
13*86d7f5d3SJohn Marino 
14*86d7f5d3SJohn Marino    This program is distributed in the hope that it will be useful,
15*86d7f5d3SJohn Marino    but WITHOUT ANY WARRANTY; without even the implied warranty of
16*86d7f5d3SJohn Marino    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17*86d7f5d3SJohn Marino    GNU General Public License for more details.
18*86d7f5d3SJohn Marino 
19*86d7f5d3SJohn Marino    You should have received a copy of the GNU General Public License
20*86d7f5d3SJohn Marino    along with this program; if not, write to the Free Software
21*86d7f5d3SJohn Marino    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
22*86d7f5d3SJohn Marino    MA 02110-1301, USA.  */
23*86d7f5d3SJohn Marino 
24*86d7f5d3SJohn Marino #ifndef _ELF_VXWORKS_H
25*86d7f5d3SJohn Marino #define _ELF_VXWORKS_H
26*86d7f5d3SJohn Marino 
27*86d7f5d3SJohn Marino #define DT_VX_WRS_TLS_DATA_START 0x60000010
28*86d7f5d3SJohn Marino #define DT_VX_WRS_TLS_DATA_SIZE  0x60000011
29*86d7f5d3SJohn Marino #define DT_VX_WRS_TLS_DATA_ALIGN 0x60000015
30*86d7f5d3SJohn Marino #define DT_VX_WRS_TLS_VARS_START 0x60000012
31*86d7f5d3SJohn Marino #define DT_VX_WRS_TLS_VARS_SIZE  0x60000013
32*86d7f5d3SJohn Marino 
33*86d7f5d3SJohn Marino #endif /* _ELF_VXWORKS_H */
34