implement Thread.getStackTrace, activeCount, and enumerate

This commit is contained in:
Joel Dice
2008-04-11 16:48:39 -06:00
parent 04c3abc967
commit d9ec8e20bf
5 changed files with 62 additions and 1 deletions

View File

@ -3051,6 +3051,11 @@ class MyProcessor: public Processor {
}
}
virtual object getStackTrace(Thread*, Thread*) {
// not implemented
return 0;
}
virtual void dispose(vm::Thread* t) {
t->m->heap->free(t, sizeof(Thread), false);
}