Leaked source code of windows server 2003
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.

40 lines
596 B

  1. /*++
  2. Copyright (c) 2001-2002 Microsoft Corporation
  3. Module Name:
  4. bugcheck.c
  5. Abstract:
  6. A few errors are so severe that our only option is to bugcheck.
  7. Author:
  8. George V. Reilly Jun-2001
  9. Revision History:
  10. --*/
  11. #include <precomp.h>
  12. VOID
  13. UlBugCheckEx(
  14. IN ULONG_PTR HttpSysBugcheckSubCode,
  15. IN ULONG_PTR Param2,
  16. IN ULONG_PTR Param3,
  17. IN ULONG_PTR Param4
  18. )
  19. {
  20. KeBugCheckEx(
  21. HTTP_DRIVER_CORRUPTED,
  22. HttpSysBugcheckSubCode,
  23. Param2,
  24. Param3,
  25. Param4
  26. );
  27. } // UlBugCheckEx