summaryrefslogtreecommitdiff
path: root/kern/linux/printk.hh
diff options
context:
space:
mode:
authorAli Saidi <saidi@eecs.umich.edu>2004-07-30 17:13:24 -0400
committerAli Saidi <saidi@eecs.umich.edu>2004-07-30 17:13:24 -0400
commitb376c6f4204f0c9de448bea1f610feef10f89929 (patch)
tree98c7a58119cf30bc663b3d2bfd8102cc685c44c9 /kern/linux/printk.hh
parent46d3c406753d124587ccc53acc0146a7fb5f960c (diff)
downloadgem5-b376c6f4204f0c9de448bea1f610feef10f89929.tar.xz
Added debug printk support
arch/alpha/ev5.hh: Added max address PAL code can be at arch/alpha/vtophys.cc: Check max address pal can be at so we don't do the wrong conversion if gdb asks for an unaligned access. --HG-- extra : convert_revision : b44f6a8fcd8582337a7d4033f28137c7e718a6a8
Diffstat (limited to 'kern/linux/printk.hh')
-rw-r--r--kern/linux/printk.hh36
1 files changed, 36 insertions, 0 deletions
diff --git a/kern/linux/printk.hh b/kern/linux/printk.hh
new file mode 100644
index 000000000..98493b753
--- /dev/null
+++ b/kern/linux/printk.hh
@@ -0,0 +1,36 @@
+/*
+ * Copyright (c) 2003-2004 The Regents of The University of Michigan
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met: redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer;
+ * redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution;
+ * neither the name of the copyright holders nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#ifndef __PRINTK_HH__
+#define __PRINTK_HH__
+
+class AlphaArguments;
+
+void Printk(AlphaArguments args);
+
+#endif // __PRINTK_HH__