Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1264 → Rev 1265

/kernel/trunk/arch/sparc64/include/interrupt.h
31,6 → 31,8
 
#include <typedefs.h>
 
#define IRQ_COUNT 1 /* TODO */
 
#define IVT_ITEMS 15
#define IVT_FIRST 1
 
/kernel/trunk/arch/sparc64/src/trap/interrupt.c
30,6 → 30,7
#include <interrupt.h>
#include <arch/types.h>
#include <debug.h>
#include <ipc/sysipc.h>
 
/** Register Interrupt Level Handler.
*
43,3 → 44,10
exc_register(n - 1, name, f);
}
 
/* Reregister irq to be IPC-ready */
void irq_ipc_bind_arch(__native irq)
{
panic("not implemented\n");
/* TODO */
}