Fix the compile. Band-aid until it is worked out how to use the context

switch api on ppc.
This commit is contained in:
grehan 2007-06-06 06:01:56 +00:00
parent ed1819a480
commit 806e204058
2 changed files with 2 additions and 2 deletions

View File

@ -197,7 +197,7 @@ void
cpu_throw(struct thread *old, struct thread *new)
{
cpu_switch(old, new);
cpu_switch(old, new, NULL);
panic("cpu_throw() didn't");
}

View File

@ -197,7 +197,7 @@ void
cpu_throw(struct thread *old, struct thread *new)
{
cpu_switch(old, new);
cpu_switch(old, new, NULL);
panic("cpu_throw() didn't");
}