NT4/private/ntos/boot/lib/ppc/xxchkstk.s
2020-09-30 17:12:29 +02:00

52 lines
751 B
ArmAsm
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 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 "ksppc.h"
//++
//
// 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)
LEAF_EXIT(_RtlCheckStack)