intr_control.cc (11150:a8a64cca231b) intr_control.cc (11793:ef606668d247)
1/*
2 * Copyright (c) 2002-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;

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

24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Nathan Binkert
29 * Ron Dreslinski
30 */
31
1/*
2 * Copyright (c) 2002-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;

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

24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Nathan Binkert
29 * Ron Dreslinski
30 */
31
32#include "cpu/intr_control.hh"
33
32#include <string>
33#include <vector>
34
35#include "base/trace.hh"
36#include "cpu/base.hh"
34#include <string>
35#include <vector>
36
37#include "base/trace.hh"
38#include "cpu/base.hh"
37#include "cpu/intr_control.hh"
38#include "cpu/thread_context.hh"
39#include "debug/IntrControl.hh"
40#include "sim/sim_object.hh"
41
42using namespace std;
43
44IntrControl::IntrControl(const Params *p)
45 : SimObject(p), sys(p->sys)

--- 25 unchanged lines hidden ---
39#include "cpu/thread_context.hh"
40#include "debug/IntrControl.hh"
41#include "sim/sim_object.hh"
42
43using namespace std;
44
45IntrControl::IntrControl(const Params *p)
46 : SimObject(p), sys(p->sys)

--- 25 unchanged lines hidden ---