genode/repos/os/include/rtc_session/rtc_session.h

57 lines
1.0 KiB
C
Raw Normal View History

2012-11-02 10:08:57 +00:00
/*
* \brief Rtc session interface
* \author Markus Partheymueller
* \author Josef Soentgen
2012-11-02 10:08:57 +00:00
* \date 2012-11-15
*/
/*
* Copyright (C) 2012 Intel Corporation
* Copyright (C) 2013-2017 Genode Labs GmbH
2012-11-02 10:08:57 +00:00
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
2012-11-02 10:08:57 +00:00
*/
#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 Timestamp;
struct Session;
}
2012-11-02 10:08:57 +00:00
struct Rtc::Timestamp
{
unsigned microsecond;
unsigned second;
unsigned minute;
unsigned hour;
unsigned day;
unsigned month;
unsigned year;
};
2012-11-02 10:08:57 +00:00
struct Rtc::Session : Genode::Session
{
2017-05-24 12:41:19 +00:00
/**
* \noapi
*/
static const char *service_name() { return "Rtc"; }
2012-11-02 10:08:57 +00:00
enum { CAP_QUOTA = 2 };
virtual Timestamp current_time() = 0;
GENODE_RPC(Rpc_current_time, Timestamp, current_time);
GENODE_RPC_INTERFACE(Rpc_current_time);
};
2012-11-02 10:08:57 +00:00
#endif /* _INCLUDE__RTC_SESSION__RTC_SESSION_H_ */