windows-nt/Source/XPSP1/NT/base/boot/lib/mips/xxchkstk.s

55 lines
829 B
ArmAsm
Raw Normal View History

2020-09-26 03:20:57 -05:00
// TITLE("Runtime Stack Checking")
//++
//
// Copyright (c) 1992 Microsoft Corporation
//
// Module Name:
//
// xxchkstk.s
//
// Abstract:
//
// This module implements a stub routine for runtime stack checking.
//
// Author:
//
// David N. Cutler (davec) 21-Sep-1992
//
// Environment:
//
// User mode.
//
// Revision History:
//
//--
#include "ksmips.h"
SBTTL("Check Stack")
//++
//
// VOID
// _RtlCheckStack (
// IN ULONG Allocation
// )
//
// Routine Description:
//
// This function provides a stub routine for runtime stack checking.
//
// Arguments:
//
// Allocation (t8) - Supplies the size of the allocation in bytes.
//
// Return Value:
//
// None.
//
//--
LEAF_ENTRY(_RtlCheckStack)
j ra // return
.end _RtlCheckStack