diff options
Diffstat (limited to 'sys/arch/hp300/include')
-rw-r--r-- | sys/arch/hp300/include/proc.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/hp300/include/proc.h b/sys/arch/hp300/include/proc.h index ce6790006e0..11c46e2f627 100644 --- a/sys/arch/hp300/include/proc.h +++ b/sys/arch/hp300/include/proc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: proc.h,v 1.2 1997/01/12 15:13:40 downsj Exp $ */ +/* $OpenBSD: proc.h,v 1.3 1997/02/24 01:16:11 downsj Exp $ */ /* $NetBSD: proc.h,v 1.6 1994/10/26 07:26:35 cgd Exp $ */ /* @@ -45,7 +45,11 @@ struct mdproc { }; /* md_flags */ +#define MDP_STACKADJ 0x0002 /* frame SP adjusted; undo when syscall does ERE +START */ #define MDP_HPUXTRACE 0x0004 /* being traced by HP-UX process */ #define MDP_HPUXMMAP 0x0008 /* VA space is multiply mapped */ #define MDP_CCBDATA 0x0010 /* copyback caching of data (68040) */ #define MDP_CCBSTACK 0x0020 /* copyback caching of stack (68040) */ +#define MDP_UNCACHE_WX 0x0040 /* The process might modify code, so + don't cache writeable executable pages. */ |