events.hh revision 2665
12212SN/A/*
22212SN/A * Copyright (c) 2004-2006 The Regents of The University of Michigan
32212SN/A * All rights reserved.
42212SN/A *
52212SN/A * Redistribution and use in source and binary forms, with or without
62212SN/A * modification, are permitted provided that the following conditions are
72212SN/A * met: redistributions of source code must retain the above copyright
82212SN/A * notice, this list of conditions and the following disclaimer;
92212SN/A * redistributions in binary form must reproduce the above copyright
102212SN/A * notice, this list of conditions and the following disclaimer in the
112212SN/A * documentation and/or other materials provided with the distribution;
122212SN/A * neither the name of the copyright holders nor the names of its
132212SN/A * contributors may be used to endorse or promote products derived from
142212SN/A * this software without specific prior written permission.
152212SN/A *
162212SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
172212SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
182212SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
192212SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
202212SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
212212SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
222212SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232212SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242212SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252212SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
262212SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665Ssaidi@eecs.umich.edu *
282665Ssaidi@eecs.umich.edu * Authors: Ali Saidi
292212SN/A */
302212SN/A
312212SN/A#ifndef __KERN_LINUX_EVENTS_HH__
322212SN/A#define __KERN_LINUX_EVENTS_HH__
332212SN/A
342212SN/A#include "kern/system_events.hh"
352212SN/A
362212SN/Anamespace Linux {
372212SN/A
382212SN/Aclass DebugPrintkEvent : public SkipFuncEvent
392212SN/A{
402212SN/A  private:
412212SN/A    bool raw;
422212SN/A
432212SN/A  public:
442212SN/A    DebugPrintkEvent(PCEventQueue *q, const std::string &desc, Addr addr,
452212SN/A                     bool r = false)
462212SN/A        : SkipFuncEvent(q, desc, addr), raw(r) {}
472212SN/A    virtual void process(ExecContext *xc);
482212SN/A};
492212SN/A
502212SN/A}
512212SN/A
522212SN/A#endif
53