diff options
author | marcel <marcel@FreeBSD.org> | 2003-11-09 20:31:04 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2003-11-09 20:31:04 +0000 |
commit | 21340f30b3b095c29e40dbb7a9789b599a246f7e (patch) | |
tree | d88a1cc1b286d672e6999651ad44bf13ca883e02 /sys/pc98/i386 | |
parent | 87bc402cf2b4799b9d90bb4c6f45d841e78d8881 (diff) | |
download | FreeBSD-src-21340f30b3b095c29e40dbb7a9789b599a246f7e.zip FreeBSD-src-21340f30b3b095c29e40dbb7a9789b599a246f7e.tar.gz |
Change the clear_ret argument of get_mcontext() to be a flags argument.
Since all callers either passed 0 or 1 for clear_ret, define bit 0 in
the flags for use as clear_ret. Reserve bits 1, 2 and 3 for use by MI
code for possible (but unlikely) future use. The remaining bits are for
use by MD code.
This change is triggered by a need on ia64 to have another knob for
get_mcontext().
Diffstat (limited to 'sys/pc98/i386')
-rw-r--r-- | sys/pc98/i386/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/pc98/i386/machdep.c b/sys/pc98/i386/machdep.c index 4987d41..d49ada9 100644 --- a/sys/pc98/i386/machdep.c +++ b/sys/pc98/i386/machdep.c @@ -2435,7 +2435,7 @@ set_fpregs(struct thread *td, struct fpreg *fpregs) * Get machine context. */ int -get_mcontext(struct thread *td, mcontext_t *mcp, int clear_ret) +get_mcontext(struct thread *td, mcontext_t *mcp, int flags) { struct trapframe *tp; @@ -2453,7 +2453,7 @@ get_mcontext(struct thread *td, mcontext_t *mcp, int clear_ret) mcp->mc_ebp = tp->tf_ebp; mcp->mc_isp = tp->tf_isp; mcp->mc_ebx = tp->tf_ebx; - if (clear_ret != 0) { + if (flags & GET_MC_CLEAR_RET) { mcp->mc_eax = 0; mcp->mc_edx = 0; } else { |