summaryrefslogtreecommitdiff
path: root/src/arch/arm/linux/process.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2009-06-09 23:38:50 -0700
committerGabe Black <gblack@eecs.umich.edu>2009-06-09 23:38:50 -0700
commit5daeefc5059ff98b63f06c963da2ffb17ef95df7 (patch)
treee8b55cd86877da68e0f990b0aace3ddc9ac1d2f6 /src/arch/arm/linux/process.hh
parentfbf4dc9da25e5dc18a8336b462f9c8bf7ef39364 (diff)
downloadgem5-5daeefc5059ff98b63f06c963da2ffb17ef95df7.tar.xz
ARM: Make ArmLinuxProcess understand "ARM private" system calls.
Diffstat (limited to 'src/arch/arm/linux/process.hh')
-rw-r--r--src/arch/arm/linux/process.hh7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/arch/arm/linux/process.hh b/src/arch/arm/linux/process.hh
index 524661b5b..205a40418 100644
--- a/src/arch/arm/linux/process.hh
+++ b/src/arch/arm/linux/process.hh
@@ -45,10 +45,15 @@ class ArmLinuxProcess : public ArmLiveProcess
/// The target system's hostname.
static const char *hostname;
- /// Array of syscall descriptors, indexed by call number.
+ /// Array of syscall descriptors, indexed by call number.
static SyscallDesc syscallDescs[];
+ /// Array of "arm private" syscall descriptors.
+ static SyscallDesc privSyscallDescs[];
+
const int Num_Syscall_Descs;
+
+ const int Num_Priv_Syscall_Descs;
};
#endif // __ARM_LINUX_PROCESS_HH__