![]() |
| Home |
|
|
Function RTInstallSharedIRQHandlerRTInstallSharedIRQHandler installs a high level interrupt handler on the specified IRQ and enables interrupts for that IRQ:
typedef void (__cdecl * RTKIRQHandler)(void);
void RTInstallSharedIRQHandler(int IRQ,
RTKIRQHandler HighLevelHandler);
It is implemented through: RTInstallSharedIRQHandlerEx(IRQ, (RTKIRQHandlerEx) HighLevelHandler, (void*)-1); The return value of handlers installed with RTInstallSharedIRQHandler is ignored (assumed to be 0). Please see the documentation of RTInstallSharedIRQHandlerEx for details.
|