do it right this time.

This commit is contained in:
toshok%hungry.com 1998-12-10 11:27:43 +00:00
parent 9bb45241da
commit 3d232abecd

View File

@ -85,7 +85,7 @@ public:
// dummy constructor, never used (only used for casting)
JavaThread(const Type& type) : JavaObject(type) { }
};
Thread(JavaObject* o) : state(DEFAULT), peer(o), handle(NULL), prio(PR_PRIORITY_NORMAL), id(NULL) {
Thread(JavaObject* o) : prio(PR_PRIORITY_NORMAL), id(NULL), handle(NULL), peer(o), state(DEFAULT) {
_lock = PR_NewLock();
}
~Thread() {