Windows NT 4.0 source code leak
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.

54 lines
829 B

4 years ago
  1. // TITLE("Runtime Stack Checking")
  2. //++
  3. //
  4. // Copyright (c) 1992 Microsoft Corporation
  5. //
  6. // Module Name:
  7. //
  8. // xxchkstk.s
  9. //
  10. // Abstract:
  11. //
  12. // This module implements a stub routine for runtime stack checking.
  13. //
  14. // Author:
  15. //
  16. // David N. Cutler (davec) 21-Sep-1992
  17. //
  18. // Environment:
  19. //
  20. // User mode.
  21. //
  22. // Revision History:
  23. //
  24. //--
  25. #include "ksmips.h"
  26. SBTTL("Check Stack")
  27. //++
  28. //
  29. // VOID
  30. // _RtlCheckStack (
  31. // IN ULONG Allocation
  32. // )
  33. //
  34. // Routine Description:
  35. //
  36. // This function provides a stub routine for runtime stack checking.
  37. //
  38. // Arguments:
  39. //
  40. // Allocation (t8) - Supplies the size of the allocation in bytes.
  41. //
  42. // Return Value:
  43. //
  44. // None.
  45. //
  46. //--
  47. LEAF_ENTRY(_RtlCheckStack)
  48. j ra // return
  49. .end _RtlCheckStack