mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-24 13:32:41 -08:00
30 lines
595 B
C
30 lines
595 B
C
/* impl.c.span: ANSI STACK PROBE
|
|
*
|
|
* $HopeName$
|
|
* Copyright (C) 1997 Howard T. Duck. All rights reserved.
|
|
*
|
|
* READERSHIP
|
|
*
|
|
* .readership: Any MPS developer.
|
|
*
|
|
* PURPOSE
|
|
*
|
|
* .purpose: The purpose of the ANSI Stack Probe is to provide a
|
|
* non-functional implementation of the Stack Probe interface.
|
|
* Stack Probe has a function implementation on platforms where the
|
|
* MPS takes some special action to avoid stack overflow.
|
|
*
|
|
* DESIGN
|
|
*
|
|
* design.mps.sp (non-existant)
|
|
*/
|
|
|
|
#include "mpm.h"
|
|
|
|
SRCID(span, "$HopeName$");
|
|
|
|
void StackProbe(Word depth)
|
|
{
|
|
AVER(depth == 0);
|
|
NOOP;
|
|
}
|