diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1997-08-08 08:27:49 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1997-08-08 08:27:49 +0000 |
commit | c6af50ae96c114059441edde31a2879102e32d99 (patch) | |
tree | e77d44cd72b4d881fb3461d76bdd50f77adc0966 /sys/arch/sparc/include/proc.h | |
parent | c1492b0f5209b759b0ab6624db56b310c28e48e2 (diff) |
Mostly sync to NetBSD-current 970804.
GENERIC currently compiles and runs; some devices (isp) are not complete and
not yet enabled.
Diffstat (limited to 'sys/arch/sparc/include/proc.h')
-rw-r--r-- | sys/arch/sparc/include/proc.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/sparc/include/proc.h b/sys/arch/sparc/include/proc.h index ff2b7b5805d..dc4b3629af1 100644 --- a/sys/arch/sparc/include/proc.h +++ b/sys/arch/sparc/include/proc.h @@ -1,4 +1,5 @@ -/* $NetBSD: proc.h,v 1.2 1994/11/20 20:53:23 deraadt Exp $ */ +/* $OpenBSD: proc.h,v 1.2 1997/08/08 08:26:39 downsj Exp $ */ +/* $NetBSD: proc.h,v 1.3 1996/09/26 18:51:17 christos Exp $ */ /* * Copyright (c) 1992, 1993 @@ -50,4 +51,8 @@ struct mdproc { struct trapframe *md_tf; /* trap/syscall registers */ struct fpstate *md_fpstate; /* fpu state, if any; always resident */ + u_long md_flags; }; + +/* md_flags */ +#define MDP_FIXALIGN 0x1 /* Fix unaligned memory accesses */ |