/* * \brief Environment initialization * \author Norman Feske * \author Christian Helmuth * \date 2006-07-27 */ /* * Copyright (C) 2006-2017 Genode Labs GmbH * * This file is part of the Genode OS framework, which is distributed * under the terms of the GNU Affero General Public License version 3. */ #include #include #include #include #include #include namespace Genode { /* * Request pointer to static environment of the Genode application */ Env_deprecated *env_deprecated() { /* * By placing the environment as static object here, we ensure that its * constructor gets called when this function is used the first time. */ static Genode::Platform_env _env; return &_env; } } using Native_pd_capability = Genode::Capability; static Native_pd_capability native_pd_cap; void Genode::init_parent_resource_requests(Genode::Env & env) { /** * Catch up asynchronous resource request and notification * mechanism construction of the expanding parent environment */ using Parent = Expanding_parent_client; static_cast(&env.parent())->init_fallback_signal_handling(); native_pd_cap = env.pd().native_pd(); } void Genode::upgrade_capability_slab() { if (!native_pd_cap.valid()) { Genode::error("Cannot upgrade capability slab " "not initialized appropriatedly"); return; } retry( [&] () { Genode::Hw_native_pd_client pd(native_pd_cap); pd.upgrade_cap_slab(); }, [&] () { internal_env().upgrade(Parent::Env::pd(), String<100>("ram_quota=", 8192).string()); }); }