mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
6cfaac182a
This type can be a forward declaration in the public API because its definition is required only in kernel-specific code. Related to #3979
37 lines
1004 B
C++
37 lines
1004 B
C++
/*
|
|
* \brief Client-side Fiasco.OC specific CPU session interface
|
|
* \author Stefan Kalkowski
|
|
* \author Norman Feske
|
|
* \date 2011-04-14
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2011-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__FOC_NATIVE_CPU__CLIENT_H_
|
|
#define _INCLUDE__FOC_NATIVE_CPU__CLIENT_H_
|
|
|
|
#include <foc_native_cpu/foc_native_cpu.h>
|
|
#include <base/rpc_client.h>
|
|
|
|
namespace Genode { struct Foc_native_cpu_client; }
|
|
|
|
|
|
struct Genode::Foc_native_cpu_client : Rpc_client<Cpu_session::Native_cpu>
|
|
{
|
|
explicit Foc_native_cpu_client(Capability<Native_cpu> cap)
|
|
: Rpc_client<Cpu_session::Native_cpu>(cap) { }
|
|
|
|
Native_capability native_cap(Thread_capability cap) override {
|
|
return call<Rpc_native_cap>(cap); }
|
|
|
|
Foc_thread_state thread_state(Thread_capability cap) override {
|
|
return call<Rpc_thread_state>(cap); }
|
|
};
|
|
|
|
#endif /* _INCLUDE__FOC_NATIVE_CPU__CLIENT_H_ */
|