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