sim-se: Add default to SyscallDesc constructor
[gem5.git] / src / sim / Process.py
index 743e5247c38a8f6f6ce6107c4fa3966c9119a634..2ffc51a33d63d9e871f4b2c7d27a812abf76a32a 100644 (file)
 #
 # Authors: Nathan Binkert
 
-from m5.SimObject import SimObject
+from m5.SimObject import *
 from m5.params import *
 from m5.proxy import *
 
 class Process(SimObject):
     type = 'Process'
     cxx_header = "sim/process.hh"
+
+    @cxxMethod
+    def map(self, vaddr, paddr, size, cacheable=False):
+        pass
+
     input = Param.String('cin', "filename for stdin")
     output = Param.String('cout', 'filename for stdout')
     errout = Param.String('cerr', 'filename for stderr')