mirror of
https://github.com/genodelabs/genode.git
synced 2025-05-10 20:43:06 +00:00
40 lines
1001 B
C
40 lines
1001 B
C
/*
|
|
* \brief Utility for implementing a local service with a single session
|
|
* \author Norman Feske
|
|
* \date 2014-02-14
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2014 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.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__GEMS__SINGLE_SESSION_SERVICE_H_
|
|
#define _INCLUDE__GEMS__SINGLE_SESSION_SERVICE_H_
|
|
|
|
#include <base/service.h>
|
|
|
|
struct Single_session_service : Genode::Service
|
|
{
|
|
Genode::Session_capability session_cap;
|
|
|
|
Single_session_service(char const *service_name,
|
|
Genode::Session_capability session_cap)
|
|
:
|
|
Service(service_name), session_cap(session_cap)
|
|
{ }
|
|
|
|
Genode::Session_capability
|
|
session(const char *, Genode::Affinity const &) override
|
|
{
|
|
return session_cap;
|
|
}
|
|
|
|
void upgrade(Genode::Session_capability, const char *) override { }
|
|
void close(Genode::Session_capability) override { }
|
|
};
|
|
|
|
#endif /* _INCLUDE__GEMS__SINGLE_SESSION_SERVICE_H_ */
|