Changeset 50b3d30 in mainline for kernel/arch/ia64/src/interrupt.c


Ignore:
Timestamp:
2008-11-30T21:35:13Z (17 years ago)
Author:
Jakub Vana <jakub.vana@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c716d94
Parents:
1baec4b
Message:

IA64: repair similators support

File:
1 edited

Legend:

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

    r1baec4b r50b3d30  
    263263#endif
    264264
    265 
     265                case INTERRUPT_TIMER:
     266                        {
     267
     268                                irq_t *irq = irq_dispatch_and_lock(ivr.vector);
     269                                if (irq) {
     270                                        irq->handler(irq, irq->arg);
     271                                        spinlock_unlock(&irq->lock);
     272                                } else {
     273                                        panic("\nUnhandled Internal Timer Interrupt (%d)\n",ivr.vector);
     274                                }
     275                        }       
     276                        break;
     277                               
    266278                default:
    267279                        {
Note: See TracChangeset for help on using the changeset viewer.