1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-17 00:30:37 -08:00
stack probe

Copied from Perforce
 Change: 19030
 ServerID: perforce.ravenbrook.com
This commit is contained in:
David Jones 1997-12-01 15:39:24 +00:00
parent 27ff8346cf
commit 4acfa1fa11

30
mps/src/span.c Normal file
View file

@ -0,0 +1,30 @@
/* 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;
}