2016-09-18 17:46:54 +00:00
|
|
|
/*
|
|
|
|
* \brief Genode native lwIP initalization
|
|
|
|
* \author Emery Hemingway
|
|
|
|
* \date 2017-08-21
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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 _INCLUDE__LWIP__GENODE_INIT_H_
|
|
|
|
#define _INCLUDE__LWIP__GENODE_INIT_H_
|
|
|
|
|
|
|
|
#include <timer/timeout.h>
|
|
|
|
#include <base/allocator.h>
|
|
|
|
|
2019-12-06 13:12:04 +00:00
|
|
|
namespace Lwip {
|
2020-09-11 13:04:40 +00:00
|
|
|
void genode_init(Genode::Allocator &heap, ::Timer::Connection &timer);
|
2019-12-06 13:12:04 +00:00
|
|
|
|
2020-07-06 08:42:54 +00:00
|
|
|
Genode::Mutex &mutex();
|
2019-12-06 13:12:04 +00:00
|
|
|
}
|
2016-09-18 17:46:54 +00:00
|
|
|
|
|
|
|
#endif
|