~ubuntu-branches/ubuntu/utopic/xen/utopic

« back to all changes in this revision

Viewing changes to xen/include/asm-x86/elf.h

  • Committer: Bazaar Package Importer
  • Author(s): Bastian Blank
  • Date: 2010-05-06 15:47:38 UTC
  • mto: (1.3.1) (15.1.1 sid) (4.1.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20100506154738-agoz0rlafrh1fnq7
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __X86_ELF_H__
 
2
#define __X86_ELF_H__
 
3
 
 
4
typedef struct {
 
5
    unsigned long cr0, cr2, cr3, cr4;
 
6
} crash_xen_core_t;
 
7
 
 
8
#ifdef __x86_64__
 
9
#include <asm/x86_64/elf.h>
 
10
#else
 
11
#include <asm/x86_32/elf.h>
 
12
#endif
 
13
 
 
14
#endif /* __X86_ELF_H__ */
 
15
 
 
16
/*
 
17
 * Local variables:
 
18
 * mode: C
 
19
 * c-set-style: "BSD"
 
20
 * c-basic-offset: 4
 
21
 * tab-width: 4
 
22
 * indent-tabs-mode: nil
 
23
 * End:
 
24
 */