2011-12-22 15:19:25 +00:00
|
|
|
/*
|
|
|
|
* \brief Lay back and relax
|
|
|
|
* \author Norman Feske
|
2012-08-01 14:16:51 +00:00
|
|
|
* \author Alexander Boettcher
|
2011-12-22 15:19:25 +00:00
|
|
|
* \date 2010-02-01
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2012-01-03 14:35:05 +00:00
|
|
|
* Copyright (C) 2010-2012 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_
|
|
|
|
|
|
|
|
/* Genode includes */
|
|
|
|
#include <base/thread.h>
|
|
|
|
|
|
|
|
/* NOVA includes */
|
|
|
|
#include <nova/syscalls.h>
|
|
|
|
|
2012-08-01 14:16:51 +00:00
|
|
|
extern int main_thread_running_semaphore();
|
|
|
|
|
2011-12-22 15:19:25 +00:00
|
|
|
namespace Genode {
|
|
|
|
|
|
|
|
__attribute__((noreturn)) inline void sleep_forever()
|
|
|
|
{
|
2012-08-01 14:16:51 +00:00
|
|
|
using namespace Nova;
|
|
|
|
|
|
|
|
Thread_base *myself = Thread_base::myself();
|
|
|
|
addr_t sem = myself ? myself->tid().exc_pt_sel + SM_SEL_EC :
|
|
|
|
main_thread_running_semaphore();
|
|
|
|
while (1) { Nova::sm_ctrl(sem, Nova::SEMAPHORE_DOWNZERO); }
|
2011-12-22 15:19:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _INCLUDE__BASE__SLEEP_H_ */
|