diff options
Diffstat (limited to 'sim/process.hh')
-rw-r--r-- | sim/process.hh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sim/process.hh b/sim/process.hh index f5b713e3c..6e91bb0ab 100644 --- a/sim/process.hh +++ b/sim/process.hh @@ -48,6 +48,7 @@ class ExecContext; class FunctionalMemory; +class SyscallDesc; class Process : public SimObject { protected: @@ -204,6 +205,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."); } + }; |