kern
diff src/intr.h @ 52:fa65b4f45366
picking this up again, let's fix it
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sun, 07 Aug 2011 06:42:00 +0300 |
parents | b1e8c8251884 |
children | 4eaecb14fe31 |
line diff
1.1 --- a/src/intr.h Mon Aug 01 06:45:29 2011 +0300 1.2 +++ b/src/intr.h Sun Aug 07 06:42:00 2011 +0300 1.3 @@ -28,11 +28,13 @@ 1.4 1.5 1.6 1.7 -typedef void (*intr_func_t)(int, struct intr_frame *frm); 1.8 +typedef void (*intr_func_t)(int); 1.9 1.10 1.11 void init_intr(void); 1.12 1.13 +struct intr_frame *get_intr_frame(void); 1.14 + 1.15 void interrupt(int intr_num, intr_func_t func); 1.16 1.17 /* defined in intr-asm.S */