events.cc (2760:4dbf498165ac) events.cc (3535:af201ccd2e51)
1/*
2 * Copyright (c) 2004-2006 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;

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

44DebugPrintkEvent::process(ThreadContext *tc)
45{
46 if (DTRACE(DebugPrintf)) {
47 if (!raw) {
48 StringWrap name(tc->getSystemPtr()->name() + ".dprintk");
49 DPRINTFN("");
50 }
51
1/*
2 * Copyright (c) 2004-2006 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;

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

44DebugPrintkEvent::process(ThreadContext *tc)
45{
46 if (DTRACE(DebugPrintf)) {
47 if (!raw) {
48 StringWrap name(tc->getSystemPtr()->name() + ".dprintk");
49 DPRINTFN("");
50 }
51
52 AlphaISA::AlphaArguments args(tc);
52 TheISA::Arguments args(tc);
53 Printk(args);
54 SkipFuncEvent::process(tc);
55 }
56}
57
58} // namespace linux
53 Printk(args);
54 SkipFuncEvent::process(tc);
55 }
56}
57
58} // namespace linux