printk.cc (2760:4dbf498165ac) printk.cc (3535:af201ccd2e51)
1/*
2 * Copyright (c) 2004-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 25 unchanged lines hidden (view full) ---

34
35#include "base/trace.hh"
36#include "arch/arguments.hh"
37
38using namespace std;
39
40
41void
1/*
2 * Copyright (c) 2004-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 25 unchanged lines hidden (view full) ---

34
35#include "base/trace.hh"
36#include "arch/arguments.hh"
37
38using namespace std;
39
40
41void
42Printk(AlphaISA::AlphaArguments args)
42Printk(TheISA::Arguments args)
43{
44 char *p = (char *)args++;
45
46 ios::fmtflags saved_flags = DebugOut().flags();
47 char old_fill = DebugOut().fill();
48 int old_precision = DebugOut().precision();
49
50 while (*p) {

--- 214 unchanged lines hidden ---
43{
44 char *p = (char *)args++;
45
46 ios::fmtflags saved_flags = DebugOut().flags();
47 char old_fill = DebugOut().fill();
48 int old_precision = DebugOut().precision();
49
50 while (*p) {

--- 214 unchanged lines hidden ---