summaryrefslogtreecommitdiff
path: root/src/arch/sparc/linux/process.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2009-04-19 04:15:32 -0700
committerGabe Black <gblack@eecs.umich.edu>2009-04-19 04:15:32 -0700
commitca8598147835cc3bf4cb6125b4f32cbd941f1ae7 (patch)
tree66b6a0f9e09c2988a56962dcd0b66a4b80dd35c1 /src/arch/sparc/linux/process.hh
parentb8333a5155d1231dc1e76762de6ece23ea702d8a (diff)
downloadgem5-ca8598147835cc3bf4cb6125b4f32cbd941f1ae7.tar.xz
SE mode: Make keeping track of the number of syscalls less hacky.
Diffstat (limited to 'src/arch/sparc/linux/process.hh')
-rw-r--r--src/arch/sparc/linux/process.hh6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/arch/sparc/linux/process.hh b/src/arch/sparc/linux/process.hh
index a76b4b3b2..f3b569168 100644
--- a/src/arch/sparc/linux/process.hh
+++ b/src/arch/sparc/linux/process.hh
@@ -43,8 +43,6 @@ namespace SparcISA {
class SparcLinuxProcess
{
public:
- SparcLinuxProcess();
-
/// Array of syscall descriptors, indexed by call number.
static SyscallDesc syscallDescs[];
@@ -55,8 +53,8 @@ class SparcLinuxProcess
SyscallDesc* getDesc(int callnum);
SyscallDesc* getDesc32(int callnum);
- const int Num_Syscall_Descs;
- const int Num_Syscall32_Descs;
+ static const int Num_Syscall_Descs;
+ static const int Num_Syscall32_Descs;
};
/// A process with emulated SPARC/Linux syscalls.