1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-24 13:32:41 -08:00
emacs/mps/src/span.c
David Jones 4acfa1fa11 New unit
stack probe

Copied from Perforce
 Change: 19030
 ServerID: perforce.ravenbrook.com
1997-12-01 15:39:24 +00:00

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;
}