Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
628 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. Abstract:
  5. This exports irql-related routines to the kernel, to be used in
  6. a PIC-based AMD64 environment.
  7. At this time it appears that this environment will never be needed, in
  8. which case these routines and the associated export table entries.
  9. Author:
  10. Forrest Foltz (forrestf) 27-Oct-2000
  11. Environment:
  12. Kernel mode only.
  13. Revision History:
  14. --*/
  15. #include "halcmn.h"
  16. KIRQL
  17. HalGetCurrentIrql (
  18. VOID
  19. )
  20. {
  21. DbgBreakPoint();
  22. return 0;
  23. }
  24. KIRQL
  25. HalSwapIrql (
  26. KIRQL NewIrql
  27. )
  28. {
  29. DbgBreakPoint();
  30. return NewIrql;
  31. }