mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-17 00:30:37 -08:00
New unit
stack probe Copied from Perforce Change: 19030 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
27ff8346cf
commit
4acfa1fa11
1 changed files with 30 additions and 0 deletions
30
mps/src/span.c
Normal file
30
mps/src/span.c
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue