Changeset 8c84448 in mainline for kernel/arch/mips32/src/interrupt.c


Ignore:
Timestamp:
2006-10-27T09:00:38Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cea12e9
Parents:
8440473
Message:

timer_fnc → virtual_timer_fnc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/mips32/src/interrupt.c

    r8440473 r8c84448  
    4747#define TIMER_IRQ 7
    4848
    49 function timer_fnc = NULL;
     49function virtual_timer_fnc = NULL;
    5050static irq_t timer_irq;
    5151
     
    117117        clock();
    118118       
    119         if (timer_fnc != NULL)
    120                 timer_fnc();
     119        if (virtual_timer_fnc != NULL)
     120                virtual_timer_fnc();
    121121}
    122122
Note: See TracChangeset for help on using the changeset viewer.