When a thread is being swapped-out, save the high FP registers. We

have a pointer in the PCPU to the PCB of the thread that currently
has its high FP registers loaded.
This commit is contained in:
Marcel Moolenaar 2003-11-09 23:13:23 +00:00
parent 5cedd9318c
commit 3534a08109
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=122373

View file

@ -145,6 +145,8 @@ cpu_thread_swapin(struct thread *td)
void
cpu_thread_swapout(struct thread *td)
{
ia64_highfp_save(td);
}
void