pda.h 270 B

123456789101112131415161718192021
  1. /*
  2. * Copyright 2003 PathScale, Inc.
  3. *
  4. * Licensed under the GPL
  5. */
  6. #ifndef __UM_PDA_X86_64_H
  7. #define __UM_PDA_X86_64_H
  8. /* XXX */
  9. struct foo {
  10. unsigned int __softirq_pending;
  11. unsigned int __nmi_count;
  12. };
  13. extern struct foo me;
  14. #define read_pda(me) (&me)
  15. #endif