mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-23 15:32:25 +00:00
ca971bbfd8
This patch changes the top-level directory layout as a preparatory step for improving the tools for managing 3rd-party source codes. The rationale is described in the issue referenced below. Issue #1082
31 lines
930 B
C++
31 lines
930 B
C++
/*
|
|
* \brief Policy module function declarations
|
|
* \author Josef Soentgen
|
|
* \date 2013-08-09
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2013 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU General Public License version 2.
|
|
*/
|
|
|
|
|
|
#include <base/stdint.h>
|
|
|
|
typedef Genode::size_t size_t;
|
|
|
|
namespace Genode {
|
|
struct Msgbuf_base;
|
|
struct Signal_context;
|
|
}
|
|
|
|
extern "C" size_t max_event_size ();
|
|
extern "C" size_t rpc_call (char *dst, char const *rpc_name, Genode::Msgbuf_base const &);
|
|
extern "C" size_t rpc_returned (char *dst, char const *rpc_name, Genode::Msgbuf_base const &);
|
|
extern "C" size_t rpc_dispatch (char *dst, char const *rpc_name);
|
|
extern "C" size_t rpc_reply (char *dst, char const *rpc_name);
|
|
extern "C" size_t signal_submit (char *dst, unsigned const);
|
|
extern "C" size_t signal_receive (char *dst, Genode::Signal_context const &, unsigned);
|