diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2001-02-22 19:35:20 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2001-02-22 19:35:20 +0000 |
| commit | feb43c5f37d221250d4a5d8a407b1e56a455a50b (patch) | |
| tree | 0393e011a98c40a848bf9f0f9d78ff251f2a918f | |
| parent | d1885c41cc45afda2c3b5d49cef01abc634166aa (diff) | |
Notes
| -rw-r--r-- | sys/amd64/amd64/trap.c | 1 | ||||
| -rw-r--r-- | sys/i386/i386/trap.c | 1 | ||||
| -rw-r--r-- | sys/kern/subr_trap.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/sys/amd64/amd64/trap.c b/sys/amd64/amd64/trap.c index 820ffca0958a..b418c0497366 100644 --- a/sys/amd64/amd64/trap.c +++ b/sys/amd64/amd64/trap.c @@ -1289,6 +1289,7 @@ ast(framep) } sticks = p->p_sticks; + p->p_md.md_regs = framep; astoff(p); cnt.v_soft++; diff --git a/sys/i386/i386/trap.c b/sys/i386/i386/trap.c index 820ffca0958a..b418c0497366 100644 --- a/sys/i386/i386/trap.c +++ b/sys/i386/i386/trap.c @@ -1289,6 +1289,7 @@ ast(framep) } sticks = p->p_sticks; + p->p_md.md_regs = framep; astoff(p); cnt.v_soft++; diff --git a/sys/kern/subr_trap.c b/sys/kern/subr_trap.c index 820ffca0958a..b418c0497366 100644 --- a/sys/kern/subr_trap.c +++ b/sys/kern/subr_trap.c @@ -1289,6 +1289,7 @@ ast(framep) } sticks = p->p_sticks; + p->p_md.md_regs = framep; astoff(p); cnt.v_soft++; |
