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

@@ -43,7 +43,7 @@ namespace Lwip {
public:
Scheduler() : _curr_time(0) { }
Scheduler() : Thread("lwip_timeout_sched"), _curr_time(0) { }
Genode::Alarm::Time curr_time() { return _curr_time; }
};

View File

@@ -43,6 +43,8 @@ class Client : public Genode::Thread<4096>
{
public:
Client() : Thread("client") { }
void entry()
{
/* client loop */