mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 20:42:56 +01:00
Fixed wrong order in initializer list.
This commit is contained in:
@@ -19,11 +19,10 @@ class Thread_test::Test_thread : public Thread
|
||||
public:
|
||||
List_element<Test_thread> _list_element{this};
|
||||
|
||||
Test_thread(Env &env, uint16_t id, Location const &location)
|
||||
:
|
||||
_env(env),
|
||||
_id(id),
|
||||
Thread(env, Name("test_", location.xpos(), "x", location.ypos()), 4 * 4096, location, Weight(), env.cpu())
|
||||
Test_thread(Env &env, uint16_t id, Location const &location)
|
||||
: Thread(env, Name("test_", location.xpos(), "x", location.ypos()), 4 * 4096, location, Weight(), env.cpu()),
|
||||
_env(env),
|
||||
_id(id)
|
||||
{ }
|
||||
|
||||
void entry() override
|
||||
|
||||
Reference in New Issue
Block a user