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.

70 lines
947 B

  1. #ifndef _BUGCHECK_H_INCLUDED_
  2. #define _BUGCHECK_H_INCLUDED_
  3. /////////////////////////////////////////////////////////////////////
  4. ////////////////////////////////////////////////// Bugcheck functions
  5. /////////////////////////////////////////////////////////////////////
  6. VOID
  7. BgChkForceCustomBugcheck (
  8. PVOID
  9. );
  10. VOID
  11. BgChkProcessHasLockedPages (
  12. PVOID
  13. );
  14. VOID
  15. BgChkNoMoreSystemPtes (
  16. PVOID
  17. );
  18. VOID
  19. BgChkBadPoolHeader (
  20. PVOID
  21. );
  22. VOID
  23. BgChkDriverCorruptedSystemPtes (
  24. PVOID
  25. );
  26. VOID
  27. BgChkDriverCorruptedExPool (
  28. PVOID
  29. );
  30. VOID
  31. BgChkDriverCorruptedMmPool (
  32. PVOID
  33. );
  34. VOID
  35. BgChkIrqlNotLessOrEqual (
  36. PVOID
  37. );
  38. VOID
  39. BgChkPageFaultBeyondEndOfAllocation (
  40. PVOID
  41. );
  42. VOID
  43. BgChkDriverVerifierDetectedViolation (
  44. PVOID
  45. );
  46. VOID BgChkCorruptSystemPtes(
  47. PVOID
  48. );
  49. VOID
  50. BgChkHangCurrentProcessor (
  51. PVOID
  52. );
  53. #endif // #ifndef _BUGCHECK_H_INCLUDED_