L4Re Operating System Framework
Interface and Usage Documentation
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
vcpu_context
Go to the documentation of this file.
1// vi:set ft=cpp: -*- Mode: C++ -*-
7#pragma once
8
9#include <l4/sys/vcpu_context.h>
10
11namespace L4 {
12
13class Vcpu_context :
14 public Kobject_t<Vcpu_context, Kobject, L4_PROTO_VCPU_CONTEXT>
15{
16public:
17 Vcpu_context(Vcpu_context const &) = delete;
18 void operator = (Vcpu_context const &) = delete;
19
20protected:
21 Vcpu_context();
22};
23
24};
L4 low-level kernel interface.