diff options
author | Andreas Sandberg <Andreas.Sandberg@ARM.com> | 2014-08-13 06:57:30 -0400 |
---|---|---|
committer | Andreas Sandberg <Andreas.Sandberg@ARM.com> | 2014-08-13 06:57:30 -0400 |
commit | 8b8d991df053dad34cd490db6c8e7c94b5413290 (patch) | |
tree | 1cd5393611977cc78a3c8c652db0eefe77d44b2c /src/arch/mips/linux/system.hh | |
parent | 8d04e32a834c28cea19d748bfe68d1aa0f593898 (diff) | |
download | gem5-8b8d991df053dad34cd490db6c8e7c94b5413290.tar.xz |
mips: Remove unused private members to fix compile-time warning
Certain versions of clang complain about unused private members if
they are not used. This changeset removes such members from the
MIPS-specific classes to silence the warning.
Diffstat (limited to 'src/arch/mips/linux/system.hh')
-rw-r--r-- | src/arch/mips/linux/system.hh | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/src/arch/mips/linux/system.hh b/src/arch/mips/linux/system.hh index 984f74694..55e47bbb2 100644 --- a/src/arch/mips/linux/system.hh +++ b/src/arch/mips/linux/system.hh @@ -87,45 +87,6 @@ class LinuxMipsSystem : public MipsSystem Addr InitrdSize() const { return Param() + 0x108; } static const int CommandLineSize = 256; - private: -#ifndef NDEBUG - /** Event to halt the simulator if the kernel calls panic() */ - BreakPCEvent *kernelPanicEvent; - - /** Event to halt the simulator if the kernel calls die_if_kernel */ - BreakPCEvent *kernelDieEvent; -#endif - - /** - * Event to skip determine_cpu_caches() because we don't support - * the IPRs that the code can access to figure out cache sizes - */ - SkipFuncEvent *skipCacheProbeEvent; - - /** PC based event to skip the ide_delay_50ms() call */ - SkipFuncEvent *skipIdeDelay50msEvent; - - /** - * PC based event to skip the dprink() call and emulate its - * functionality - */ - Linux::DebugPrintkEvent *debugPrintkEvent; - - /** - * Skip calculate_delay_loop() rather than waiting for this to be - * calculated - */ - SkipDelayLoopEvent *skipDelayLoopEvent; - - /** - * Event to print information about thread switches if the trace flag - * Thread is set - */ - PrintThreadInfo *printThreadEvent; - - /** Grab the PCBB of the idle process when it starts */ - IdleStartEvent *idleStartEvent; - public: typedef LinuxMipsSystemParams Params; LinuxMipsSystem(Params *p); |