/* * \brief Client-side IRQ session interface * \author Christian Helmuth * \date 2007-09-13 */ /* * Copyright (C) 2007-2012 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__IRQ_SESSION__CLIENT_H_ #define _INCLUDE__IRQ_SESSION__CLIENT_H_ #include #include namespace Genode { struct Irq_session_client : Rpc_client { explicit Irq_session_client(Irq_session_capability session) : Rpc_client(session) { } void wait_for_irq() { call(); } }; } #endif /* _INCLUDE__IRQ_SESSION__CLIENT_H_ */