genode/base/include/irq_session/client.h

32 lines
727 B
C
Raw Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief Client-side IRQ session interface
* \author Christian Helmuth
* \date 2007-09-13
*/
/*
2012-01-03 15:35:05 +01:00
* Copyright (C) 2007-2012 Genode Labs GmbH
2011-12-22 16:19:25 +01:00
*
* 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__IRQ_SESSION__CLIENT_H_
#define _INCLUDE__IRQ_SESSION__CLIENT_H_
#include <irq_session/capability.h>
#include <base/rpc_client.h>
namespace Genode {
struct Irq_session_client : Rpc_client<Irq_session>
{
explicit Irq_session_client(Irq_session_capability session)
: Rpc_client<Irq_session>(session) { }
void wait_for_irq() { call<Rpc_wait_for_irq>(); }
};
}
#endif /* _INCLUDE__IRQ_SESSION__CLIENT_H_ */