base: do not allow unnamed threads

fix #901
This commit is contained in:
Martin Stein
2013-10-10 17:00:03 +02:00
committed by Christian Helmuth
parent afdabe9df8
commit ee5d213c1f
41 changed files with 68 additions and 30 deletions

View File

@ -19,7 +19,8 @@ struct Thread : Genode::Thread<STACK_SIZE>
{
Genode::Lock &_barrier;
Thread(Genode::Lock &barrier) : _barrier(barrier) { start(); }
Thread(Genode::Lock &barrier)
: Genode::Thread<STACK_SIZE>("stat"), _barrier(barrier) { start(); }
void entry()
{