Rev 1690 | Rev 1703 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1690 | Rev 1702 | ||
---|---|---|---|
Line 24... | Line 24... | ||
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | */ |
27 | */ |
28 | 28 | ||
- | 29 | /** @addtogroup ia32interrupt ia32 |
|
- | 30 | * @ingroup interrupt |
|
- | 31 | * @{ |
|
- | 32 | */ |
|
- | 33 | /** @file |
|
- | 34 | */ |
|
- | 35 | ||
29 | #include <arch/interrupt.h> |
36 | #include <arch/interrupt.h> |
30 | #include <syscall/syscall.h> |
37 | #include <syscall/syscall.h> |
31 | #include <print.h> |
38 | #include <print.h> |
32 | #include <debug.h> |
39 | #include <debug.h> |
33 | #include <panic.h> |
40 | #include <panic.h> |
Line 196... | Line 203... | ||
196 | if (irq == IRQ_CLK) |
203 | if (irq == IRQ_CLK) |
197 | return; |
204 | return; |
198 | trap_virtual_enable_irqs(1 << irq); |
205 | trap_virtual_enable_irqs(1 << irq); |
199 | exc_register(IVT_IRQBASE+irq, "ipc_int", ipc_int); |
206 | exc_register(IVT_IRQBASE+irq, "ipc_int", ipc_int); |
200 | } |
207 | } |
- | 208 | ||
- | 209 | /** @} |
|
- | 210 | */ |
|
- | 211 |