pda.h 636 B

12345678910111213141516171819202122232425262728293031
  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
  16. /*
  17. * Overrides for Emacs so that we follow Linus's tabbing style.
  18. * Emacs will notice this stuff at the end of the file and automatically
  19. * adjust the settings for this buffer only. This must remain at the end
  20. * of the file.
  21. * ---------------------------------------------------------------------------
  22. * Local variables:
  23. * c-file-style: "linux"
  24. * End:
  25. */