core: destruct pd::_ram_quota after regions

Fixes #2966
This commit is contained in:
Alexander Boettcher 2018-09-06 21:10:47 +02:00 committed by Christian Helmuth
parent 4ca8e31e00
commit 4d228e22cb
1 changed files with 3 additions and 3 deletions

View File

@ -58,13 +58,13 @@ class Genode::Pd_session_component : public Session_object<Pd_session>
Constructible<Platform_pd> _pd { };
Constructible<Account<Cap_quota> > _cap_account { };
Constructible<Account<Ram_quota> > _ram_account { };
Region_map_component _address_space;
Region_map_component _stack_area;
Region_map_component _linker_area;
Constructible<Account<Cap_quota> > _cap_account { };
Constructible<Account<Ram_quota> > _ram_account { };
friend class Native_pd_component;