Subversion Repositories Kolibri OS

Rev

Rev 5191 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. /* VxWorks ELF support for BFD.
  2.    Copyright (C) 2007-2015 Free Software Foundation, Inc.
  3.  
  4.    Contributed by Nathan Sidwell <nathan@codesourcery.com>
  5.  
  6.    This file is part of BFD, the Binary File Descriptor library.
  7.  
  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.
  12.  
  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.
  17.  
  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.  */
  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 */
  33.