mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 22:23:16 +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
34 lines
985 B
C++
34 lines
985 B
C++
/*
|
|
* \brief Client-side NOVA-specific CPU session interface
|
|
* \author Norman Feske
|
|
* \date 2016-04-21
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2016-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__NOVA_NATIVE_CPU__CLIENT_H_
|
|
#define _INCLUDE__NOVA_NATIVE_CPU__CLIENT_H_
|
|
|
|
#include <nova_native_cpu/nova_native_cpu.h>
|
|
#include <base/rpc_client.h>
|
|
|
|
namespace Genode { struct Nova_native_cpu_client; }
|
|
|
|
|
|
struct Genode::Nova_native_cpu_client : Rpc_client<Cpu_session::Native_cpu>
|
|
{
|
|
explicit Nova_native_cpu_client(Capability<Cpu_session::Native_cpu> cap)
|
|
: Rpc_client<Cpu_session::Native_cpu>(cap) { }
|
|
|
|
void thread_type(Thread_capability thread_cap, Thread_type thread_type,
|
|
Exception_base exception_base) override {
|
|
call<Rpc_thread_type>(thread_cap, thread_type, exception_base); }
|
|
};
|
|
|
|
#endif /* _INCLUDE__NOVA_NATIVE_CPU__CLIENT_H_ */
|