mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-24 07:46:42 +00:00
86eb3f4a0d
Issue #1344
39 lines
873 B
C++
39 lines
873 B
C++
/*
|
|
* \brief Rtc session interface
|
|
* \author Markus Partheymueller
|
|
* \date 2012-11-15
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2012 Intel Corporation
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__RTC_SESSION__RTC_SESSION_H_
|
|
#define _INCLUDE__RTC_SESSION__RTC_SESSION_H_
|
|
|
|
#include <session/session.h>
|
|
#include <base/rpc.h>
|
|
#include <base/stdint.h>
|
|
|
|
namespace Rtc {
|
|
|
|
struct Session : Genode::Session
|
|
{
|
|
static const char *service_name() { return "Rtc"; }
|
|
|
|
/**
|
|
* Get microseconds elapsed since 1.1.1970 UTC.
|
|
*/
|
|
virtual Genode::uint64_t current_time() = 0;
|
|
|
|
GENODE_RPC(Rpc_current_time, Genode::uint64_t, current_time);
|
|
GENODE_RPC_INTERFACE(Rpc_current_time);
|
|
};
|
|
}
|
|
|
|
#endif /* _INCLUDE__RTC_SESSION__RTC_SESSION_H_ */
|