Changes between Version 10 and Version 11 of kernel_interrupts


Ignore:
Timestamp:
Mar 12, 2015, 5:57:16 PM (9 years ago)
Author:
alain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • kernel_interrupts

    v10 v11  
    6060 === void '''_ext_irq_alloc( unsigned int isr_type , unsigned int isr_channel , unsigned int* wti_index ) ===
    6161This function is used when the architecture contains an external IOPIC component. It dynamically allocates an external IRQ signaling completion of an I/O operation to the processor P[x,y,p] running the calling task. The two (isr_type, isr_channel) arguments define actually the external IRQ to be routed.
    62  * '''isr_type''' : type of ISR to be executed
     62 * '''isr_type''' : type of ISR
    6363 * '''isr_channel''' : ISR channel (for multi-channels peripherals)
    6464 * '''wti_index''' : return value defining the index of the WTI mailbox allocated to P[x,y,p]
     
    6868 3. it initializes the proper entry in the WTI interrupt vector associated to processor P[x,y,p].
    6969
    70  === void '''_ext_irq_release( unsigned int isr_type , unsigned int isr_channel , unsigned int* wti_index ) ===
     70 === void '''_ext_irq_release( unsigned int isr_type , unsigned int isr_channel , unsigned int wti_index ) ===
    7171This function is used when the architecture contains an external IOPIC component. It desallocates the ressources allocated by the  previous _ext_irq_alloc() function to the calling processor. The two (isr_type, isr_channel) arguments define actually the external IRQ to be released.
    72  * '''isr_type''' : type of ISR to be executed
     72 * '''isr_type''' : type of ISR
    7373 * '''isr_channel''' : ISR channel (for multi-channels peripherals)
    74  * '''wti_index''' :  index of the WTI mailbox allocated to P[x,y,p]
     74 * '''wti_index''' :  index of the WTI mailbox allocated to P[x,y,p] to be released.
    7575This function does only two things:
    7676 1.  it desactivates the PIC entry associated to the (isr_type/isr_channel) IRQ.