Changeset 953b0f33 in mainline
- Timestamp:
- 2006-05-01T13:19:14Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0f27b4c
- Parents:
- cf26ba9
- Location:
- arch
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia64/include/interrupt.h
rcf26ba9 r953b0f33 34 34 #include <arch/register.h> 35 35 36 #define IRQ_COUNT 1 /* TODO */ 37 36 38 /** External Interrupt vectors. */ 37 39 #define INTERRUPT_TIMER 0 … … 49 51 50 52 struct istate { 51 52 53 __r128 f2; 53 54 __r128 f3; … … 80 81 __r128 f30; 81 82 __r128 f31; 82 83 83 84 84 __address ar_bsp; 85 85 __address ar_bspstore; -
arch/ia64/src/interrupt.c
rcf26ba9 r953b0f33 44 44 #include <print.h> 45 45 #include <proc/scheduler.h> 46 #include <ipc/sysipc.h> 47 46 48 47 49 #define VECTORS_64_BUNDLE 20 … … 240 242 } 241 243 } 244 245 /* Reregister irq to be IPC-ready */ 246 void irq_ipc_bind_arch(__native irq) 247 { 248 panic("not implemented\n"); 249 /* TODO */ 250 } -
arch/ppc32/include/interrupt.h
rcf26ba9 r953b0f33 30 30 #define __ppc32_INTERRUPT_H__ 31 31 32 #define IRQ_COUNT 1 /* TODO */ 33 32 34 #define IVT_ITEMS 15 33 35 #define INT_OFFSET 0 -
arch/ppc32/src/interrupt.c
rcf26ba9 r953b0f33 33 33 #include <time/clock.h> 34 34 #include <print.h> 35 35 #include <ipc/sysipc.h> 36 36 37 37 void start_decrementer(void) … … 56 56 exc_register(VECTOR_DECREMENTER, "timer", exception_decrementer); 57 57 } 58 59 /* Reregister irq to be IPC-ready */ 60 void irq_ipc_bind_arch(__native irq) 61 { 62 panic("not implemented\n"); 63 /* TODO */ 64 } -
arch/sparc64/include/interrupt.h
rcf26ba9 r953b0f33 32 32 #include <typedefs.h> 33 33 34 #define IRQ_COUNT 1 /* TODO */ 35 34 36 #define IVT_ITEMS 15 35 37 #define IVT_FIRST 1 -
arch/sparc64/src/trap/interrupt.c
rcf26ba9 r953b0f33 31 31 #include <arch/types.h> 32 32 #include <debug.h> 33 #include <ipc/sysipc.h> 33 34 34 35 /** Register Interrupt Level Handler. … … 44 45 exc_register(n - 1, name, f); 45 46 } 47 48 /* Reregister irq to be IPC-ready */ 49 void irq_ipc_bind_arch(__native irq) 50 { 51 panic("not implemented\n"); 52 /* TODO */ 53 }
Note:
See TracChangeset
for help on using the changeset viewer.