diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2006-02-19 00:47:45 -0500 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2006-02-19 00:47:45 -0500 |
commit | 14f2cdb1a14e9e6896939c210cdacef289d9c263 (patch) | |
tree | cdf7705980fb776a518d40e4fa3869fc0bead2cf /arch/alpha/alpha_linux_process.hh | |
parent | a611b8100379e28728c1084801413954c973e734 (diff) | |
parent | 00d58aeb4dc0569bc3d1273d90867148e6500ad9 (diff) | |
download | gem5-14f2cdb1a14e9e6896939c210cdacef289d9c263.tar.xz |
Merge zizzer:/bk/m5
into pb15.local:/Users/ali/work/m5.head
--HG--
extra : convert_revision : 774e4afbb0f9c3ae62843138b6d7195ea184ff92
Diffstat (limited to 'arch/alpha/alpha_linux_process.hh')
-rw-r--r-- | arch/alpha/alpha_linux_process.hh | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/arch/alpha/alpha_linux_process.hh b/arch/alpha/alpha_linux_process.hh index b4fe8e8f8..7de1b1ac1 100644 --- a/arch/alpha/alpha_linux_process.hh +++ b/arch/alpha/alpha_linux_process.hh @@ -43,8 +43,15 @@ class AlphaLinuxProcess : public LiveProcess std::vector<std::string> &argv, std::vector<std::string> &envp); - /// Syscall emulation function. - virtual void syscall(ExecContext *xc); + virtual SyscallDesc* getDesc(int callnum); + + /// The target system's hostname. + static const char *hostname; + + /// Array of syscall descriptors, indexed by call number. + static SyscallDesc syscallDescs[]; + + const int Num_Syscall_Descs; }; |