mirror of
https://github.com/genodelabs/genode.git
synced 2025-05-23 10:44:11 +00:00
This patch moves the base library from src/base to src/lib/base, flattens the library-internal directory structure, and moves the common parts of the library-description files to base/lib/mk/base.inc and base/lib/mk/base-common.inc. Furthermore, the patch fixes a few cosmetic issues (whitespace and comments only) that I encountered while browsing the result. Fixes #1952
29 lines
540 B
C++
29 lines
540 B
C++
/*
|
|
* \brief Lay back and relax
|
|
* \author Norman Feske
|
|
* \author Christian Helmuth
|
|
* \date 2006-07-19
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2006-2016 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.
|
|
*/
|
|
|
|
/* Genode includes */
|
|
#include <base/sleep.h>
|
|
#include <base/lock.h>
|
|
|
|
/* L4/Fiasco includes */
|
|
namespace Fiasco {
|
|
#include <l4/sys/ipc.h>
|
|
}
|
|
|
|
|
|
void Genode::sleep_forever()
|
|
{
|
|
while (true) Fiasco::l4_ipc_sleep((Fiasco::l4_timeout_t){0});
|
|
}
|