1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-03 10:31:37 -08:00
emacs/mps/code/span.c
Richard Brooksby 3d5e2ca85f Adding hopenames back into the master sources, so that they can be included in the union sources along with the id keywords.
This was achieved by partially undoing changelist 24817, including an accidental corruption of eventgen.pl.

Copied from Perforce
 Change: 24877
 ServerID: perforce.ravenbrook.com
2001-12-06 18:14:02 +00:00

26 lines
574 B
C

/* impl.c.span: ANSI STACK PROBE
*
* $Id$
* $HopeName: MMsrc!span.c(trunk.3) $
* Copyright (c) 2001 Ravenbrook Limited.
*
* PURPOSE
*
* .purpose: The purpose of the ANSI Stack Probe is to provide a
* non-functional implementation of the StackProbe interface.
* StackProbe has a function implementation on platforms where the
* MPS takes some special action to avoid stack overflow.
*/
#include "mpm.h"
SRCID(span, "$Id$");
/* StackProbe -- probe above the stack to provoke early stack overflow */
void StackProbe(Size depth)
{
AVER(depth == 0);
NOOP;
}