#if 0 out the following functions:

cpu_export_context()
  cpu_set_args()
  cpu_free_kse_mdstorage()
  cpu_export_context()
This commit is contained in:
Peter Wemm 2002-09-17 07:47:10 +00:00
parent b069d4207c
commit 28487340f2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=103466

View File

@ -274,6 +274,7 @@ struct md_store {
struct trapframe mds_frame;
};
#if 0
void
cpu_save_upcall(struct thread *td, struct kse *newkse)
{
@ -294,6 +295,7 @@ cpu_save_upcall(struct thread *td, struct kse *newkse)
/* This copies most of the user mode register values. */
bcopy(td->td_frame, newkse->ke_frame, sizeof(struct trapframe));
}
#endif
void
cpu_set_upcall(struct thread *td, void *pcb)
@ -345,6 +347,7 @@ cpu_set_upcall(struct thread *td, void *pcb)
#endif
}
#if 0
void
cpu_set_args(struct thread *td, struct kse *ke)
{
@ -353,7 +356,9 @@ cpu_set_args(struct thread *td, struct kse *ke)
(int)ke->ke_mailbox);
*/
}
#endif
#if 0
void
cpu_free_kse_mdstorage(struct kse *kse)
{
@ -363,12 +368,14 @@ cpu_free_kse_mdstorage(struct kse *kse)
kse->ke_pcb = NULL;
kse->ke_frame = NULL;
}
#endif
#if 0
int
cpu_export_context(struct thread *td)
{
/* XXXKSE */
#if 0
struct trapframe *frame;
struct thread_mailbox *tm;
struct trapframe *uframe;
@ -384,9 +391,9 @@ cpu_export_context(struct thread *td)
* May need to fiddle a few other values too.
*/
return (error);
#endif
return (0);
}
#endif
void
cpu_wait(p)