SPARC: Get rid of the copy/pasted StackTrace stolen from Alpha.
[gem5.git] / src / arch / arm / system.cc
index e7470f89a0923db59317cae417c534d78abcd740..756f64eb7a2a297179585153de5505aafa6c5afa 100644 (file)
@@ -1,4 +1,16 @@
 /*
+ * Copyright (c) 2010 ARM Limited
+ * All rights reserved
+ *
+ * The license below extends only to copyright in the software and shall
+ * not be construed as granting a license to any other intellectual
+ * property including but not limited to intellectual property relating
+ * to a hardware implementation of the functionality of the software
+ * licensed hereunder.  You may use the software subject to the license
+ * terms below provided that you ensure that this notice is replicated
+ * unmodified and in its entirety in all distributions of the software,
+ * modified or unmodified, in source code or in binary form.
+ *
  * Copyright (c) 2002-2006 The Regents of The University of Michigan
  * All rights reserved.
  *
  */
 
 #include "arch/arm/system.hh"
+#include <iostream>
 
-
-using namespace LittleEndianGuest;
+using namespace std;
+using namespace ArmISA;
+using namespace Linux;
 
 ArmSystem::ArmSystem(Params *p)
     : System(p)
 {
+    debugPrintkEvent = addKernelFuncEvent<DebugPrintkEvent>("dprintk");
 
 }
 
 ArmSystem::~ArmSystem()
 {
+    delete debugPrintkEvent;
 }