1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-24 14:30:43 -08:00
emacs/mps/code/prmcli.h
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

27 lines
534 B
C

/* impl.h.prmcli: PROTECTION MUTATOR CONTEXT (Linux)
*
* $Id$
* $HopeName: MMsrc!prmcli.h(trunk.1) $
* Copyright (c) 2001 Ravenbrook Limited.
*
* .readership: MPS developers.
*/
#ifndef prmcli_h
#define prmcli_h
/* open sesame magic */
#define _BSD_SOURCE 1
#define _POSIX_C_SOURCE 1
#include "mpm.h"
#include <signal.h>
typedef struct MutatorFaultContextStruct { /* Protection fault context data */
struct sigcontext *scp; /* Linux sigcontext */
} MutatorFaultContextStruct;
#endif /* prmcli_h */