2013-12-05 14:45:14 +00:00
|
|
|
/**
|
|
|
|
* \brief Hard-context for use within rump kernel
|
|
|
|
* \author Sebastian Sumpf
|
|
|
|
* \date 2014-02-05
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 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__HARD_CONTEXT_H_
|
|
|
|
#define _INCLUDE__HARD_CONTEXT_H_
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <rump/rump.h>
|
|
|
|
}
|
|
|
|
|
|
|
|
#include <base/thread.h>
|
|
|
|
|
|
|
|
|
|
|
|
/*************
|
|
|
|
** Threads **
|
|
|
|
*************/
|
|
|
|
|
|
|
|
typedef void *(*func)(void *);
|
|
|
|
|
|
|
|
namespace Timer {
|
|
|
|
class Connection;
|
|
|
|
};
|
|
|
|
|
2014-04-23 13:17:54 +00:00
|
|
|
|
|
|
|
class Hard_context
|
2013-12-05 14:45:14 +00:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
2014-04-23 13:17:54 +00:00
|
|
|
int _cookie;
|
|
|
|
lwp *_lwp = 0;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
Hard_context(int cookie)
|
|
|
|
: _cookie(cookie){ }
|
|
|
|
|
|
|
|
void set_lwp(lwp *l) { _lwp = l; }
|
|
|
|
lwp *get_lwp() { return _lwp; }
|
|
|
|
|
|
|
|
static Timer::Connection *timer();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Hard_context_thread : public Hard_context,
|
2016-05-04 10:27:17 +00:00
|
|
|
public Genode::Thread_deprecated<sizeof(Genode::addr_t) * 2048>
|
2014-04-23 13:17:54 +00:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
func _func;
|
|
|
|
void *_arg;
|
2013-12-05 14:45:14 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
void entry()
|
|
|
|
{
|
|
|
|
_func(_arg);
|
|
|
|
PDBG("Returned from func");
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2014-04-23 13:17:54 +00:00
|
|
|
Hard_context_thread(char const *name, func f, void *arg, int cookie, bool run = true)
|
2016-05-04 10:27:17 +00:00
|
|
|
: Hard_context(cookie), Thread_deprecated(name),
|
2014-04-23 13:17:54 +00:00
|
|
|
_func(f), _arg(arg) { if (run) start(); }
|
2013-12-05 14:45:14 +00:00
|
|
|
};
|
|
|
|
|
2014-04-23 13:17:54 +00:00
|
|
|
|
2013-12-05 14:45:14 +00:00
|
|
|
#endif /* _INCLUDE__HARD_CONTEXT_H_ */
|