summaryrefslogtreecommitdiff
path: root/sim/process.hh
diff options
context:
space:
mode:
authorAli Saidi <saidi@eecs.umich.edu>2006-02-19 00:47:45 -0500
committerAli Saidi <saidi@eecs.umich.edu>2006-02-19 00:47:45 -0500
commit14f2cdb1a14e9e6896939c210cdacef289d9c263 (patch)
treecdf7705980fb776a518d40e4fa3869fc0bead2cf /sim/process.hh
parenta611b8100379e28728c1084801413954c973e734 (diff)
parent00d58aeb4dc0569bc3d1273d90867148e6500ad9 (diff)
downloadgem5-14f2cdb1a14e9e6896939c210cdacef289d9c263.tar.xz
Merge zizzer:/bk/m5
into pb15.local:/Users/ali/work/m5.head --HG-- extra : convert_revision : 774e4afbb0f9c3ae62843138b6d7195ea184ff92
Diffstat (limited to 'sim/process.hh')
-rw-r--r--sim/process.hh6
1 files changed, 6 insertions, 0 deletions
diff --git a/sim/process.hh b/sim/process.hh
index 43fafd9d7..40143ea04 100644
--- a/sim/process.hh
+++ b/sim/process.hh
@@ -48,6 +48,7 @@
class ExecContext;
class FunctionalMemory;
+class SyscallDesc;
class Process : public SimObject
{
public:
@@ -200,6 +201,11 @@ class LiveProcess : public Process
std::string executable,
std::vector<std::string> &argv,
std::vector<std::string> &envp);
+
+ virtual void syscall(ExecContext *xc);
+
+ virtual SyscallDesc* getDesc(int callnum) { panic("Must be implemented."); }
+
};