genode/repos/ports-foc/src/lib/l4lx/l4_util_util.cc

44 lines
723 B
C++

/*
* \brief L4Re functions needed by L4Linux.
* \author Stefan Kalkowski
* \date 2011-04-17
*/
/*
* Copyright (C) 2011-2013 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.
*/
#include <base/printf.h>
#include <vcpu.h>
namespace Fiasco {
#include <l4/util/util.h>
}
using namespace Fiasco;
extern "C" {
void l4_sleep(int ms)
{
L4lx::Vcpu *vcpu = static_cast<L4lx::Vcpu*>(Genode::Thread_base::myself());
if (vcpu)
vcpu->timer()->msleep(ms);
else {
static Timer::Connection timer;
timer.msleep(ms);
}
}
void l4_sleep_forever(void)
{
for (;;)
l4_ipc_sleep(L4_IPC_NEVER);
}
}