genode/base/include/base/sleep.h

30 lines
558 B
C++

/*
* \brief Lay back and relax
* \author Norman Feske
* \date 2006-07-19
*/
/*
* Copyright (C) 2006-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.
*/
#ifndef _INCLUDE__BASE__SLEEP_H_
#define _INCLUDE__BASE__SLEEP_H_
#include <base/ipc.h>
namespace Genode {
__attribute__((noreturn)) inline void sleep_forever()
{
Msgbuf<16> buf;
Ipc_server s(&buf, &buf);
while (1) s >> IPC_WAIT;
}
}
#endif /* _INCLUDE__BASE__SLEEP_H_ */