PageRenderTime 17ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/arch/x86/xen/xen-asm.h

https://bitbucket.org/cresqo/cm7-p500-kernel
C Header | 12 lines | 7 code | 4 blank | 1 comment | 0 complexity | 07ebe2fc099188a36415190e6eba5fea MD5 | raw file
Possible License(s): LGPL-2.0, AGPL-1.0, GPL-2.0
  1. #ifndef _XEN_XEN_ASM_H
  2. #define _XEN_XEN_ASM_H
  3. #include <linux/linkage.h>
  4. #define RELOC(x, v) .globl x##_reloc; x##_reloc=v
  5. #define ENDPATCH(x) .globl x##_end; x##_end=.
  6. /* Pseudo-flag used for virtual NMI, which we don't implement yet */
  7. #define XEN_EFLAGS_NMI 0x80000000
  8. #endif