~jsvoboda/helenos/dnsr

« back to all changes in this revision

Viewing changes to kernel/arch/ia64/include/elf.h

  • Committer: Martin Decky
  • Date: 2011-08-09 18:08:23 UTC
  • Revision ID: martin@decky.cz-20110809180823-yf3gc26yqs7p30sq
do not provide general access to kernel headers from uspace, only allow specific headers to be accessed or shared
externalize headers which serve as kernel/uspace API/ABI into a special tree

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
27
 */
28
28
 
29
 
/** @addtogroup ia64    
 
29
/** @addtogroup ia64
30
30
 * @{
31
31
 */
32
32
/** @file
35
35
#ifndef KERN_ia64_ELF_H_
36
36
#define KERN_ia64_ELF_H_
37
37
 
38
 
#define ELF_MACHINE             EM_IA_64
39
 
#define ELF_DATA_ENCODING       ELFDATA2LSB
40
 
#define ELF_CLASS               ELFCLASS64
 
38
#define ELF_MACHINE        EM_IA_64
 
39
#define ELF_DATA_ENCODING  ELFDATA2LSB
 
40
#define ELF_CLASS          ELFCLASS64
41
41
 
42
42
#endif
43
43