Changeset 8c84448 in mainline for kernel/arch/mips32/src/interrupt.c
- Timestamp:
- 2006-10-27T09:00:38Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cea12e9
- Parents:
- 8440473
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/src/interrupt.c
r8440473 r8c84448 47 47 #define TIMER_IRQ 7 48 48 49 function timer_fnc = NULL;49 function virtual_timer_fnc = NULL; 50 50 static irq_t timer_irq; 51 51 … … 117 117 clock(); 118 118 119 if ( timer_fnc != NULL)120 timer_fnc();119 if (virtual_timer_fnc != NULL) 120 virtual_timer_fnc(); 121 121 } 122 122
Note:
See TracChangeset
for help on using the changeset viewer.