/* * \brief Common types used within init * \author Norman Feske * \date 2017-03-03 */ /* * Copyright (C) 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. */ #ifndef _LIB__SANDBOX__TYPES_H_ #define _LIB__SANDBOX__TYPES_H_ #include #include #include namespace Sandbox { class Child; using namespace Genode; using Genode::size_t; using Genode::strlen; struct Prio_levels { long value; }; typedef List > Child_list; } #endif /* _LIB__SANDBOX__TYPES_H_ */