mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-19 20:30:29 -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
26 lines
494 B
C
26 lines
494 B
C
/* impl.h.prmcli: PROTECTION MUTATOR CONTEXT (Linux)
|
|
*
|
|
* $Id$
|
|
* 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 */
|