2011-12-22 15:19:25 +00:00
|
|
|
/*
|
|
|
|
* \brief Lay back and relax
|
|
|
|
* \author Norman Feske
|
2014-04-30 14:30:40 +00:00
|
|
|
* \author Christian Helmuth
|
2011-12-22 15:19:25 +00:00
|
|
|
* \date 2006-07-19
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2014-04-30 14:30:40 +00:00
|
|
|
* Copyright (C) 2006-2014 Genode Labs GmbH
|
2011-12-22 15:19:25 +00:00
|
|
|
*
|
|
|
|
* 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_
|
|
|
|
|
2014-04-30 14:30:40 +00:00
|
|
|
#include <base/lock.h>
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
namespace Genode {
|
|
|
|
|
|
|
|
__attribute__((noreturn)) inline void sleep_forever()
|
|
|
|
{
|
2014-04-30 14:30:40 +00:00
|
|
|
Lock sleep;
|
|
|
|
while (true) sleep.lock();
|
2011-12-22 15:19:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _INCLUDE__BASE__SLEEP_H_ */
|