diff options
Diffstat (limited to 'src/arch/sparc/linux/process.hh')
-rw-r--r-- | src/arch/sparc/linux/process.hh | 6 |
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. |