Deleted Added
sdiff udiff text old ( 5646:0a488a147fb8 ) new ( 5647:b06b49498c79 )
full compact
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

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

53 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 *
55 * Authors: Gabe Black
56 */
57
58#ifndef __ARCH_X86_INTERRUPTS_HH__
59#define __ARCH_X86_INTERRUPTS_HH__
60
61#include "arch/x86/faults.hh"
62#include "cpu/thread_context.hh"
63
64namespace X86ISA
65{
66
67class Interrupts
68{
69 public:
70 Interrupts()
71 {
72 clear_all();
73 }
74
75 int InterruptLevel(uint64_t softint)
76 {
77 panic("Interrupts::InterruptLevel unimplemented!\n");
78 return 0;
79 }

--- 45 unchanged lines hidden ---