// vi:set ft=cpp: -*- Mode: C++ -*-
/**
 * \file
 * Virtualization interface
 */
/*
 * (c) 2008-2010 Adam Lackorzynski <adam@os.inf.tu-dresden.de>,
 *               Alexander Warg <warg@os.inf.tu-dresden.de>
 *     economic rights: Technische Universität Dresden (Germany)
 *
 * License: see LICENSE.spdx (in this directory or the directories above)
 */

#pragma once

#include <l4/sys/vm.h>
#include <l4/sys/task>

namespace L4 {

/**
 * Virtual machine host address space.
 * \ingroup l4_kernel_object_api
 *
 * L4::Vm is a specialisation of L4::Task, used for virtual machines. The
 * microkernel employs an appropriate page-table format for hosting VMs, such
 * as ePT on VT-x. On Arm, it offers a call to make the virtual GICC area
 * available to the VM.
 */
class Vm : public Kobject_t<Vm, Task, L4_PROTO_VM>
{
protected:
  Vm();

private:
  Vm(Vm const &);
  void operator = (Vm const &);
};

};
