mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 21:57:55 +00:00
0167d5af50
Fixes #2407
24 lines
598 B
C++
24 lines
598 B
C++
/*
|
|
* \brief RAM session interface
|
|
* \author Norman Feske
|
|
* \date 2006-05-11
|
|
*
|
|
* \deprecated The RAM session interface is integrated in the PD session now.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2006-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__RAM_SESSION__RAM_SESSION_H_
|
|
#define _INCLUDE__RAM_SESSION__RAM_SESSION_H_
|
|
|
|
#include <pd_session/pd_session.h>
|
|
|
|
namespace Genode { typedef Pd_session Ram_session; }
|
|
|
|
#endif /* _INCLUDE__RAM_SESSION__RAM_SESSION_H_ */
|