Changeset 335 for trunk/hal/x86_64/core/hal_interrupt.c
- Timestamp:
- Aug 7, 2017, 11:19:27 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/x86_64/core/hal_interrupt.c
r274 r335 37 37 * Timer interrupt 38 38 */ 39 void hal_timer_intr(hal_ cpu_context_t *tf)39 void hal_timer_intr(hal_trapframe_t *tf) 40 40 { 41 41 if (hal_get_gid() != 0) { … … 58 58 * Serial Port (COM1) interrupt 59 59 */ 60 void hal_com1_intr(hal_ cpu_context_t *tf)60 void hal_com1_intr(hal_trapframe_t *tf) 61 61 { 62 62 static char prev; … … 132 132 * Keyboard interrupt (8042 PS/2) 133 133 */ 134 void hal_keyboard_intr(hal_ cpu_context_t *tf)134 void hal_keyboard_intr(hal_trapframe_t *tf) 135 135 { 136 136 uint64_t val;
Note: See TracChangeset
for help on using the changeset viewer.