Deleted Added
sdiff udiff text old ( 3565:6ad587fb7dfd ) new ( 4762:c94e103c83ad )
full compact
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;

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

36class ThreadContext;
37
38class BreakPCEvent;
39class IdleStartEvent;
40
41#include "arch/alpha/idle_event.hh"
42#include "arch/alpha/system.hh"
43#include "kern/linux/events.hh"
44#include "params/LinuxAlphaSystem.hh"
45
46using namespace AlphaISA;
47using namespace Linux;
48
49/**
50 * This class contains linux specific system code (Loading, Events).
51 * It points to objects that are the system binaries to load and patches them
52 * appropriately to work in simulator.

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

125 * Thread is set
126 */
127 PrintThreadInfo *printThreadEvent;
128
129 /** Grab the PCBB of the idle process when it starts */
130 IdleStartEvent *idleStartEvent;
131
132 public:
133 typedef LinuxAlphaSystemParams Params;
134 LinuxAlphaSystem(Params *p);
135 ~LinuxAlphaSystem();
136
137 void setDelayLoop(ThreadContext *tc);
138};
139
140#endif // __ARCH_ALPHA_LINUX_SYSTEM_HH__