/* * \brief Capability * \author Norman Feske * \date 2016-06-16 */ /* * Copyright (C) 2016-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 /* base-internal includes */ #include using namespace Genode; Native_capability::Raw Native_capability::raw() const { /* * On Linux, we don't pass information as a 'raw' representation to * child components. So this function remains unused. We still need * to provide it to prevent link errors of noux, which relies on this * function for implementing 'fork' (not supported on base-linux). */ return { { 0, 0, 0, 0 } }; }