mirror of
https://github.com/genodelabs/genode.git
synced 2025-03-12 07:24:07 +00:00
Since the timer and timeout handling is part of the base library (the dynamic linker), it belongs to the base repository. Besides moving the timer and its related infrastructure (alarm, timeout libs, tests) to the base repository, this patch also moves the timer from the 'drivers' subdirectory directly to 'src' and disamibuates the timer's build locations for the various kernels. Otherwise the different timer implementations could interfere with each other when using one build directory with multiple kernels. Note that this patch changes the include paths for the former os/timer, os/alarm.h, os/duration.h, and os/timed_semaphore.h to base/. Issue #3101
44 lines
880 B
C++
44 lines
880 B
C++
/*
|
|
* \brief Provides the Timer service to multiple clients
|
|
* \author Norman Feske
|
|
* \author Martin Stein
|
|
* \date 2006-08-15
|
|
*/
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
|
|
/* Genode includes */
|
|
#include <base/heap.h>
|
|
#include <base/component.h>
|
|
|
|
/* local includes */
|
|
#include <root_component.h>
|
|
|
|
using namespace Genode;
|
|
|
|
|
|
class Main
|
|
{
|
|
private:
|
|
|
|
Sliced_heap _sliced_heap;
|
|
Timer::Root_component _root;
|
|
|
|
public:
|
|
|
|
Main(Env &env) : _sliced_heap(env.ram(), env.rm()),
|
|
_root(env, _sliced_heap)
|
|
{
|
|
env.parent().announce(env.ep().manage(_root));
|
|
}
|
|
};
|
|
|
|
|
|
size_t Component::stack_size() { return 4*1024*sizeof(addr_t); }
|
|
void Component::construct(Env &env) { static Main main(env); }
|