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

@@ -403,7 +403,7 @@ namespace Genode {
*
* \param name thread name (for debugging)
*/
explicit Thread(const char *name = "<noname>")
explicit Thread(const char *name)
: Thread_base(name, STACK_SIZE) { }
};
}