diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1997-02-24 01:16:12 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1997-02-24 01:16:12 +0000 |
commit | b5a2c0914d4a3b69f4b9067cc570cd259390d1d1 (patch) | |
tree | e950b8f21c13c414a6aa344878a23ec3fed1b6e3 /sys/arch/hp300/include | |
parent | 428fe47992a7779523cc4d7f505b729b49b8ec7d (diff) |
Add support for COMPAT_SUNOS and enable it.
hp300 now runs sun3 SunOS executables!
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. */ |