mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-03-24 07:41:54 -07:00
21 lines
418 B
C
21 lines
418 B
C
/* impl.h.prmcfr: PROTECTION MUTATOR CONTEXT (FREEBSD)
|
|
*
|
|
* $HopeName: $
|
|
* Copyright (C) 1998 The Harlequin Group Limited. All rights reserved.
|
|
*
|
|
* .readership: MPS developers.
|
|
*/
|
|
|
|
#ifndef prmcfr_h
|
|
#define prmcfr_h
|
|
|
|
#include "mpm.h"
|
|
|
|
#include <signal.h>
|
|
|
|
typedef struct MutatorFaultContextStruct { /* Protection fault context data */
|
|
ucontext_t *ucontext;
|
|
} MutatorFaultContextStruct;
|
|
|
|
|
|
#endif /* prmcfr_h */
|