mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-19 03:06:39 +00:00
2000b7c0e6
This function ('noux_construct') is called from each back-end's construct method (libc or Genode component). fixes #2291
22 lines
443 B
C++
22 lines
443 B
C++
/**
|
|
* \brief Noux initialization
|
|
* \author Sebastian Sumpf
|
|
* \date 2017-02-24
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 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 __NOUX_CONSTRUCT_H_
|
|
#define __NOUX_CONSTRUCT_H_
|
|
|
|
namespace Genode { class Env; }
|
|
|
|
void noux_construct(Genode::Env &env);
|
|
|
|
#endif /* __NOUX_CONSTRUCT_H_ */
|