fix non-openjdk build

This commit is contained in:
Joel Dice 2010-11-27 11:31:34 -07:00
parent e68dfe1e89
commit d4708907ea
2 changed files with 2 additions and 1 deletions

View File

@ -16,6 +16,7 @@ import java.util.WeakHashMap;
public class Thread implements Runnable {
private long peer;
private volatile boolean interrupted;
private volatile boolean unparked;
private boolean daemon;
private byte state;
private byte priority;

View File

@ -49,7 +49,7 @@ class MyClasspath : public Classpath {
const unsigned NormalPriority = 5;
return vm::makeThread
(t, 0, 0, 0, NewState, NormalPriority, 0, 0, 0,
(t, 0, 0, 0, 0, NewState, NormalPriority, 0, 0, 0,
root(t, Machine::BootLoader), 0, 0, group, 0);
}