| 101 | } |
| 102 | |
| 103 | void CEventAPI::Handler_Detach(EVENT& E, IEventReceiver* H) |
| 104 | { |
| 105 | if (nullptr == E) |
| 106 | return; |
| 107 | CS.Enter(); |
| 108 | E->Detach(H); |
| 109 | Destroy(E); |
| 110 | CS.Leave(); |
| 111 | } |
| 112 | void CEventAPI::Signal(EVENT E, u64 P1, u64 P2) |
| 113 | { |
| 114 | CS.Enter(); |
no test coverage detected