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 2003-11-09 23:13:23 +00:00
parent 1a57fb58c6
commit e8baed96b5

View File

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