mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
a9f0e47ea3
Fixes #3749
66 lines
1.3 KiB
C++
66 lines
1.3 KiB
C++
/*
|
|
* \brief Log text output session interface
|
|
* \author Norman Feske
|
|
* \date 2006-09-15
|
|
*/
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__LOG_SESSION__LOG_SESSION_H_
|
|
#define _INCLUDE__LOG_SESSION__LOG_SESSION_H_
|
|
|
|
#include <base/capability.h>
|
|
#include <base/stdint.h>
|
|
#include <base/rpc_args.h>
|
|
#include <session/session.h>
|
|
|
|
namespace Genode {
|
|
|
|
struct Log_session;
|
|
struct Log_session_client;
|
|
}
|
|
|
|
|
|
struct Genode::Log_session : Session
|
|
{
|
|
/**
|
|
* \noapi
|
|
*/
|
|
static const char *service_name() { return "LOG"; }
|
|
|
|
/*
|
|
* A LOG connection consumes a dataspace capability for the session-object
|
|
* allocation and its session capability.
|
|
*/
|
|
enum { CAP_QUOTA = 2 };
|
|
|
|
typedef Log_session_client Client;
|
|
|
|
virtual ~Log_session() { }
|
|
|
|
/* the lowest platform-specific maximum IPC payload size (OKL4) */
|
|
enum { MAX_STRING_LEN = 232 };
|
|
|
|
typedef Rpc_in_buffer<MAX_STRING_LEN> String;
|
|
|
|
/**
|
|
* Output null-terminated string
|
|
*/
|
|
virtual void write(String const &string) = 0;
|
|
|
|
|
|
/*********************
|
|
** RPC declaration **
|
|
*********************/
|
|
|
|
GENODE_RPC(Rpc_write, void, write, String const &);
|
|
GENODE_RPC_INTERFACE(Rpc_write);
|
|
};
|
|
|
|
#endif /* _INCLUDE__LOG_SESSION__LOG_SESSION_H_ */
|