mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-20 04:30:55 -08:00
This change will be integrated but ignored (-ay) to the gg-epcore/union sources, so that they retain HopeNames. Copied from Perforce Change: 24911 ServerID: perforce.ravenbrook.com
25 lines
536 B
C
25 lines
536 B
C
/* impl.c.span: ANSI STACK PROBE
|
|
*
|
|
* $Id$
|
|
* 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;
|
|
}
|