genode/repos/base-okl4/src/core/core_log.cc
2017-02-28 12:59:29 +01:00

22 lines
476 B
C++

/*
* \brief Kernel-specific core's 'log' backend
* \author Stefan Kalkowski
* \date 2016-10-10
*/
/*
* Copyright (C) 2016-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.
*/
/* core includes */
#include <core_log.h>
namespace Okl4 { extern "C" {
#include <l4/kdebug.h>
}; }
void Genode::Core_log::out(char const c) { Okl4::L4_KDB_PrintChar(c); }