mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 15:02:25 +00:00
ca971bbfd8
This patch changes the top-level directory layout as a preparatory step for improving the tools for managing 3rd-party source codes. The rationale is described in the issue referenced below. Issue #1082
32 lines
626 B
C++
32 lines
626 B
C++
/*
|
|
* \brief Lay back and relax
|
|
* \author Norman Feske
|
|
* \author Christian Helmuth
|
|
* \date 2006-07-19
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2006-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.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__BASE__SLEEP_H_
|
|
#define _INCLUDE__BASE__SLEEP_H_
|
|
|
|
/* L4/Fiasco includes */
|
|
namespace Fiasco {
|
|
#include <l4/sys/ipc.h>
|
|
}
|
|
|
|
namespace Genode {
|
|
|
|
__attribute__((noreturn)) inline void sleep_forever()
|
|
{
|
|
while (true) Fiasco::l4_ipc_sleep((Fiasco::l4_timeout_t){0});
|
|
}
|
|
}
|
|
|
|
#endif /* _INCLUDE__BASE__SLEEP_H_ */
|