mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-21 13:10:37 -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
37 lines
860 B
C
37 lines
860 B
C
/* impl.c.prmcan: PROTECTION MUTATOR CONTEXT (ANSI)
|
|
*
|
|
* $Id$
|
|
* Copyright (c) 2001 Ravenbrook Limited.
|
|
*
|
|
* .design: See design.mps.prot for the generic design of the interface
|
|
* which is implemented in this module including the contracts for the
|
|
* functions.
|
|
*
|
|
* .purpose: This module implements the part of the protection module
|
|
* that implements the MutatorFaultContext type. In this ANSI version
|
|
* none of the functions have a useful implementation.
|
|
*/
|
|
|
|
#include "mpm.h"
|
|
|
|
SRCID(prmcan, "$Id$");
|
|
|
|
|
|
/* ProtCanStepInstruction -- can the current instruction be single-stepped */
|
|
|
|
Bool ProtCanStepInstruction(MutatorFaultContext context)
|
|
{
|
|
UNUSED(context);
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
|
|
/* ProtStepInstruction -- step over instruction by modifying context */
|
|
|
|
Res ProtStepInstruction(MutatorFaultContext context)
|
|
{
|
|
UNUSED(context);
|
|
|
|
return ResUNIMPL;
|
|
}
|