mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 15:02:25 +00:00
9251b1ede8
For further information see: http://wiki.netbsd.org/rumpkernel/. In this version I ported the central rump components to Genode in order to take advantage of NetBSD file system implementation. The new 'dde_rump' repository contains the Genode version of the rump libraries and a 'rump_fs' server that implements Genode file-system-session interface. Currently ext2, iso9660, and fat file-systems are supported. Issue #1048
66 lines
1.2 KiB
C++
66 lines
1.2 KiB
C++
/**
|
|
* \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;
|
|
};
|
|
|
|
class Hard_context : public Genode::Thread<sizeof(Genode::addr_t) * 2048>
|
|
{
|
|
private:
|
|
|
|
func _func;
|
|
void *_arg;
|
|
int _cookie;
|
|
lwp *_lwp;
|
|
|
|
protected:
|
|
|
|
void entry()
|
|
{
|
|
_func(_arg);
|
|
PDBG("Returned from func");
|
|
}
|
|
|
|
public:
|
|
|
|
Hard_context(char const *name, func f, void *arg, int cookie, bool run = true)
|
|
: Thread(name),
|
|
_func(f), _arg(arg), _cookie(cookie), _lwp(0) { if (run) start(); }
|
|
|
|
void set_lwp(lwp *l) { _lwp = l; }
|
|
lwp *get_lwp() { return _lwp; }
|
|
|
|
static Timer::Connection *timer();
|
|
};
|
|
|
|
#endif /* _INCLUDE__HARD_CONTEXT_H_ */
|