genode/repos/base-hw/src/core/kernel/processor_pool.cc
2014-06-26 12:04:31 +02:00

22 lines
484 B
C++

/*
* \brief Provide a processor object for every available processor
* \author Martin Stein
* \date 2014-01-14
*/
/*
* Copyright (C) 2014 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.
*/
/* core includes */
#include <kernel/processor_pool.h>
using namespace Kernel;
Processor_pool * Kernel::processor_pool() {
return unmanaged_singleton<Processor_pool>(); }