2011-12-22 15:19:25 +00:00
|
|
|
/*
|
|
|
|
* \brief Noux-session client interface
|
|
|
|
* \author Norman Feske
|
|
|
|
* \date 2011-02-15
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2013-01-10 20:44:47 +00:00
|
|
|
* Copyright (C) 2011-2013 Genode Labs GmbH
|
2011-12-22 15:19:25 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
|
|
* under the terms of the GNU General Public License version 2.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDE__NOUX_SESSION__CLIENT_H_
|
|
|
|
#define _INCLUDE__NOUX_SESSION__CLIENT_H_
|
|
|
|
|
|
|
|
#include <noux_session/noux_session.h>
|
|
|
|
#include <noux_session/capability.h>
|
|
|
|
#include <base/rpc_client.h>
|
|
|
|
#include <base/printf.h>
|
|
|
|
|
|
|
|
namespace Noux {
|
|
|
|
|
2012-04-23 18:42:55 +00:00
|
|
|
struct Session_client : Rpc_client<Session>
|
2011-12-22 15:19:25 +00:00
|
|
|
{
|
|
|
|
explicit Session_client(Session_capability session)
|
2012-04-23 18:42:55 +00:00
|
|
|
: Rpc_client<Session>(session) { }
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
|
2012-04-23 18:42:55 +00:00
|
|
|
Dataspace_capability sysio_dataspace()
|
2011-12-22 15:19:25 +00:00
|
|
|
{
|
|
|
|
return call<Rpc_sysio_dataspace>();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool syscall(Syscall sc)
|
|
|
|
{
|
2012-10-08 12:44:31 +00:00
|
|
|
static bool verbose = false;
|
|
|
|
|
2011-12-22 15:19:25 +00:00
|
|
|
bool result = call<Rpc_syscall>(sc);
|
|
|
|
|
2012-10-08 12:44:31 +00:00
|
|
|
if ((result == false) && verbose)
|
2011-12-22 15:19:25 +00:00
|
|
|
PERR("syscall %s failed", syscall_name(sc));
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2013-09-06 19:10:23 +00:00
|
|
|
|
|
|
|
int next_open_fd(int start_fd)
|
|
|
|
{
|
|
|
|
return call<Rpc_next_open_fd>(start_fd);
|
|
|
|
}
|
2014-01-28 13:07:36 +00:00
|
|
|
|
|
|
|
Rm_session_capability lookup_rm_session(addr_t const addr)
|
|
|
|
{
|
|
|
|
return call<Rpc_lookup_rm_session>(addr);
|
|
|
|
}
|
2011-12-22 15:19:25 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _INCLUDE__NOUX_SESSION__CLIENT_H_ */
|