L4Re Operating System Framework
Interface and Usage Documentation
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
vm
Go to the documentation of this file.
1// vi:set ft=cpp: -*- Mode: C++ -*-
6/*
7 * (c) 2008-2010 Adam Lackorzynski <adam@os.inf.tu-dresden.de>,
8 * Alexander Warg <warg@os.inf.tu-dresden.de>
9 * economic rights: Technische Universität Dresden (Germany)
10 *
11 * License: see LICENSE.spdx (in this directory or the directories above)
12 */
13
14#pragma once
15
16#include <l4/sys/vm.h>
17#include <l4/sys/task>
18
19namespace L4 {
20
30class Vm : public Kobject_t<Vm, Task, L4_PROTO_VM>
31{
32protected:
33 Vm();
34
35private:
36 Vm(Vm const &);
37 void operator = (Vm const &);
38};
39
40};
L4 low-level kernel interface.
Common task related definitions.