mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-12 16:02:57 +00:00
b44f0554bd
This patch adjusts the various users of the 'Child' API to the changes on the account of the new non-blocking parent interface. It also removes the use of the no-longer-available 'Connection::KEEP_OPEN' feature. With the adjustment, we took the opportunity to redesign several components to fit the non-blocking execution model much better, in particular the demo applications. Issue #2120
25 lines
523 B
C++
25 lines
523 B
C++
/*
|
|
* \brief Port of ACPICA library
|
|
* \author Alexander Boettcher
|
|
* \date 2016-11-14
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2016 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__ACPICA__ACPICA_H_
|
|
#define _INCLUDE__ACPICA__ACPICA_H_
|
|
|
|
namespace Genode {
|
|
struct Env;
|
|
struct Allocator;
|
|
}
|
|
|
|
namespace Acpica { void init(Genode::Env &env, Genode::Allocator &heap); }
|
|
|
|
#endif /* _INCLUDE__ACPICA__ACPICA_H_ */
|