sim-se: Add default to SyscallDesc constructor
[gem5.git] / src / sim / system.hh
index c3c178dbd6c3c330007043bb6c4ddab78c22fa4b..acd3108a0117296cfd6ae7841e7c42b839077e1c 100644 (file)
@@ -229,6 +229,9 @@ class System : public MemObject
     /** Object pointer for the kernel code */
     ObjectFile *kernel;
 
+    /** Additional object files */
+    std::vector<ObjectFile *> kernelExtras;
+
     /** Beginning of kernel code */
     Addr kernelStart;
 
@@ -262,6 +265,9 @@ class System : public MemObject
         return kvmVM;
     }
 
+    /** Verify gem5 configuration will support KVM emulation */
+    bool validKvmEnvironment() const;
+
     /** Get a pointer to access the physical memory of the system */
     PhysicalMemory& getPhysMem() { return physmem; }