| 872 | } |
| 873 | |
| 874 | void CpuIrqDeassert(eIRQSRC Device) |
| 875 | { |
| 876 | _ASSERT(g_bCritSectionValid); |
| 877 | if (g_bCritSectionValid) EnterCriticalSection(&g_CriticalSection); |
| 878 | g_bmIRQ &= ~(1<<Device); |
| 879 | if (g_bCritSectionValid) LeaveCriticalSection(&g_CriticalSection); |
| 880 | } |
| 881 | |
| 882 | //=========================================================================== |
| 883 |
no outgoing calls
no test coverage detected