Deleted Added
sdiff udiff text old ( 2680:246e7104f744 ) new ( 2716:b9114064d77a )
full compact
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;

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

40{
41 public:
42 SkipFuncEvent(PCEventQueue *q, const std::string &desc, Addr addr)
43 : PCEvent(q, desc, addr)
44 {}
45 virtual void process(ThreadContext *tc);
46};
47
48class IdleStartEvent : public PCEvent
49{
50 public:
51 IdleStartEvent(PCEventQueue *q, const std::string &desc, Addr addr)
52 : PCEvent(q, desc, addr)
53 {}
54 virtual void process(ThreadContext *tc);
55};
56
57#endif // __SYSTEM_EVENTS_HH__